.page-register {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-register__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-register__light-bg {
  background-color: #11271B; /* Card BG, used for lighter sections */
  color: #F2FFF6; /* Text Main */
}

.page-register__deep-green-bg {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-register__text-main {
  color: #F2FFF6; /* Text Main */
}

.page-register__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-register__section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
}

.page-register__section-description {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  text-align: center;
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.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: 900px;
}

.page-register__main-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6; /* Text Main */
}

.page-register__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

.page-register__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-register__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-register__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Adjusted for visibility on dark bg */
  border: 2px solid #2AD16F; /* Adjusted for visibility on dark bg */
}

.page-register__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

/* Benefits Section */
.page-register__benefits-section {
  padding: 80px 0;
}

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

.page-register__card-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-register__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #2E7A4E; /* Border */
}

.page-register__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-register__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 0 20px;
  color: #F2FFF6; /* Text Main */
}

.page-register__card-text {
  font-size: 16px;
  line-height: 1.7;
  padding: 0 20px;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* Guide Section */
.page-register__guide-section {
  padding: 80px 0;
}

.page-register__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.page-register__step-item {
  text-align: center;
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
}

.page-register__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: -50px auto 20px auto;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-register__step-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-register__step-description {
  font-size: 16px;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-register__important-notes {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.page-register__notes-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-register__notes-list {
  list-style-type: disc;
  padding-left: 25px;
  color: #A7D9B8; /* Text Secondary */
}

.page-register__notes-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 80px 0;
}

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

.page-register__faq-item {
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-register__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-register__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-register__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider for hover effect */
}

.page-register__faq-qtext {
  flex-grow: 1;
}

.page-register__faq-toggle {
  font-size: 28px;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Highlight color */
}

.page-register__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.7;
  background-color: #08160F; /* Background */
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* CTA Bottom Section */
.page-register__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-register__hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-register {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-register__container,
  .page-register__hero-section,
  .page-register__benefits-section,
  .page-register__guide-section,
  .page-register__faq-section,
  .page-register__cta-bottom-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-register__hero-section {
    padding-top: 10px !important;
  }

  .page-register__hero-image-wrapper,
  .page-register__hero-image,
  .page-register__card-image,
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-register__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-register__btn-primary,
  .page-register__btn-secondary,
  .page-register a[class*="button"],
  .page-register a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-register__section-title {
    font-size: 28px;
  }

  .page-register__hero-description {
    font-size: 18px;
  }

  .page-register__main-title {
    font-size: 36px;
  }

  .page-register__card-title {
    font-size: 20px;
  }

  .page-register__step-title {
    font-size: 22px;
  }

  .page-register__faq-item summary {
    font-size: 18px;
    padding: 15px 20px;
  }

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

  .page-register__notes-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 30px;
  }

  .page-register__hero-description {
    font-size: 16px;
  }

  .page-register__section-title {
    font-size: 24px;
  }

  .page-register__card-title {
    font-size: 18px;
  }

  .page-register__step-title {
    font-size: 20px;
  }

  .page-register__faq-item summary {
    font-size: 16px;
  }

  .page-register__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
    margin-top: -40px;
  }
}