.page-register {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #FFFFFF;
  color: #333333;
  font-family: sans-serif;
}

.page-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  margin-bottom: 20px;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-register__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  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;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-register__cta-button--primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-register__cta-button--primary:hover {
  background-color: #cc6a00;
  transform: translateY(-2px);
}

.page-register__cta-button--secondary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-register__cta-button--secondary:hover {
  background-color: #1f8ac2;
  transform: translateY(-2px);
}

.page-register__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-register__benefits-section,
.page-register__steps-section,
.page-register__faq-section,
.page-register__final-cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-register__benefit-card,
.page-register__step-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-register__benefit-image,
.page-register__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-register__benefit-title,
.page-register__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-register__benefit-description,
.page-register__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-register__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  color: #26A9E0;
  background-color: #e0f2f7;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-register__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-register__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__final-cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-register__final-cta-section .page-register__section-title {
  color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 30px 15px;
  }

  .page-register__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-register__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

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

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

  .page-register__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-register__benefits-section,
  .page-register__steps-section,
  .page-register__faq-section,
  .page-register__final-cta-section {
    padding: 40px 15px;
  }

  .page-register__benefits-grid,
  .page-register__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-register__benefit-card,
  .page-register__step-card {
    padding: 20px;
  }

  .page-register__benefit-title,
  .page-register__step-title {
    font-size: 1.2em;
  }

  .page-register__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-register__faq-answer.active {
    padding: 10px 20px;
  }

  /* Ensure images do not overflow on mobile */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-register__section-title {
    font-size: clamp(1.4em, 6vw, 2em);
  }

  .page-register__faq-question {
    font-size: 0.95em;
    padding: 12px 15px;
  }
}