.page-register {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-register__container {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust based on content width */
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-register__hero-content {
  max-width: 800px;
}

.page-register__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  /* No fixed large font-size, relying on clamp if needed, or responsive scaling */
}

@media (min-width: 769px) {
  .page-register__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

.page-register__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-register__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure button is large enough */
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-register__section-title {
  color: #1F2D3D;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.page-register__benefits-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-register__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__benefit-item {
  background-color: #F4F7FB;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-register__benefit-item:hover {
  transform: translateY(-5px);
}

.page-register__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #D6E2FF;
}

.page-register__benefit-title {
  color: #2F6BFF;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-register__benefit-description {
  color: #1F2D3D;
  font-size: 0.95em;
  line-height: 1.5;
}

.page-register__how-to-register-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-register__step-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__step-title {
  color: #2F6BFF;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-register__step-description {
  color: #1F2D3D;
  font-size: 0.95em;
  line-height: 1.5;
}

.page-register__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-register__security-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-register__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-register__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register__security-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-register__security-description {
  color: #1F2D3D;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-register__read-more-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__read-more-link:hover {
  color: #6FA3FF;
}

.page-register__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #D6E2FF;
}

.page-register__faq-question {
  color: #2F6BFF;
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register__faq-answer {
  color: #1F2D3D;
  font-size: 0.98em;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-register__hero-image-wrapper {
    max-width: 90%;
  }
  .page-register__security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-register__security-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-register__container {
    padding: 0 15px;
  }
  .page-register__hero-section {
    padding-bottom: 30px;
  }
  .page-register__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-register__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-register__hero-cta-button, .page-register__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
    min-width: unset;
    min-height: unset;
  }
  .page-register__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-register__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-register__benefit-item {
    padding: 25px;
  }
  .page-register__step-image {
    height: 200px;
  }
  .page-register__security-image {
    max-width: 95%;
  }
  .page-register__security-description {
    font-size: 1em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
  }
  .page-register__faq-answer {
    font-size: 0.9em;
  }

  /* Ensure images do not overflow on mobile */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__benefit-icon {
    max-width: 100px;
    height: auto;
  }
  .page-register__step-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__security-image {
    max-width: 100%;
    height: auto;
  }
}