* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-size: 16px;
  font-family: sans-serif;
}

.v4_2 {
  width: 100%;
  min-height: 100vh;
  background: rgba(255,255,255,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
  position: relative;
  padding: 0;
}

/* Header section */
.header {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v4_20 {
  width: 100%;
  height: 1px;
  background: rgba(217,217,217,1);
  margin-top: 75px;
}

.v58_2 {
  width: 252px;
  height: 47px;
  background: url("../images/v58_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-top: 15px;
}

/* Main content */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin-top: 10rem; /* Increased from 6rem to make room for the image */
  position: relative;
  z-index: 2;
  padding-bottom: 2rem; /* Reduced padding-bottom since image is now at top */
}

.v4_21 {
  color: rgba(63,63,63,1);
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  position: relative; /* Ensure the text stays above the image */
  text-shadow: 0 0 10px rgba(255,255,255,0.8); /* Add subtle text shadow for better readability */
}

.v58_4 {
  width: 132px;
  height: 160px;
  background: url("../images/v58_4.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-bottom: 1rem;
}

.v4_25 {
  width: 220px;
  height: 60px;
  position: relative;
  margin-top: 1.5rem;
}

.v4_23 {
  width: 100%;
  height: 100%;
  background: rgba(0,103,177,1);
  position: absolute;
  border-radius: 8px;
}

.v4_24 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: rgba(255,255,255,1);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background image */
.v58_7 {
  width: 50%;
  max-width: 557px;
  height: 272px;
  background: url("../images/v58_7.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 12%; /* Changed from bottom: 5% to top position */
  right: 5%;
  z-index: 1;
  opacity: 0.9; /* Slightly reduce opacity to improve text readability */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .v4_21 {
    font-size: 2.5rem;
  }
  
  .content {
    margin-top: 8rem; /* Adjusted for image at top */
    padding-bottom: 2rem;
  }
  
  .v58_7 {
    width: 80%;
    height: 200px;
    top: 10%; /* Changed from bottom position to top */
    right: 10%;
  }
}

@media (max-width: 576px) {
  .v4_21 {
    font-size: 2rem;
  }
  
  .v58_4 {
    width: 100px;
    height: 120px;
  }
  
  .content {
    margin-top: 7rem; /* Adjusted for image at top */
    padding-bottom: 2rem;
  }
  
  .v58_7 {
    width: 90%;
    height: 150px;
    top: 10%; /* Changed from bottom position to top */
    right: 5%;
  }
  
  .v4_25 {
    width: 180px;
    height: 50px;
  }
  
  .v4_24 {
    font-size: 16px;
  }
}

/* Extra breakpoint for very small screens */
@media (max-width: 375px) {
  .content {
    margin-top: 6rem; /* Adjusted for image at top */
    padding-bottom: 2rem;
  }
  
  .v4_21 {
    font-size: 1.75rem;
  }
  
  .v58_7 {
    top: 9%; /* Changed from bottom position to top */
    width: 95%;
  }
}