.page-register {
  padding-top: 10px; /* Small top padding for main content after shared header */
  background-color: #F4F7FB; /* Background color for the page */
  color: #1F2D3D;
}

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

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient for hero background */
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-register__hero-content {
  padding: 0 20px;
  max-width: 900px;
}

.page-register__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

.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: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-register__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

.page-register__guide-section {
  margin-bottom: 60px;
}

.page-register__guide-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-register__guide-steps {
  flex: 1;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-register__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #2F6BFF;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-register__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px;
  color: #1F2D3D;
}

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

.page-register__guide-image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure image is not too small */
}

.page-register__guide-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-register__cta-button--small {
  padding: 12px 25px;
  font-size: 0.95em;
  margin-top: 20px;
}

.page-register__benefits-section {
  background-color: #FFFFFF;
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-register__benefit-card {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-register__benefit-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: #2F6BFF;
}

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

.page-register__benefits-image-wrapper {
  text-align: center;
}

.page-register__benefits-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-register__faq-section {
  margin-bottom: 60px;
}

.page-register__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

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

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

.page-register__cta-final-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-register__cta-final-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-register__cta-final-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-register__guide-layout {
    flex-direction: column;
  }

  .page-register__guide-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-register__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-register__hero-description {
    font-size: 1em;
  }

  .page-register__section-title,
  .page-register__cta-final-title {
    font-size: 2em;
  }

  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1em;
  }

  /* Ensure all images in content area are responsive and don't overflow */
  .page-register__hero-image,
  .page-register__guide-image,
  .page-register__benefits-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-register__container {
    padding: 15px;
  }

  .page-register__section-title,
  .page-register__cta-final-title {
    font-size: 1.8em;
  }
}