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

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  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 sections to create visual break */
  color: #F2FFF6; /* Text Main */
}

.page-register__text-contrast-fix {
  color: #F2FFF6 !important; /* Ensure light text on dark background */
}

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

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for aesthetic */
}

.page-register__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over the image for visual hierarchy */
  position: relative;
  z-index: 2;
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-register__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-register__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Button */
.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

/* General Sections */
.page-register__section-title {
  font-size: 2.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  margin-top: 60px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-register__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-register__benefit-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

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

.page-register__benefit-icon {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-register__benefit-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-register__benefit-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-register__button-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #2AD16F; /* Green from button gradient */
  text-decoration: none;
  border: 2px solid #2AD16F; /* Green from button gradient */
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-register__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

/* How-To Section */
.page-register__how-to-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

.page-register__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__step-card {
  background-color: #08160F; /* Background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-register__step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.page-register__step-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-register__step-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 15px;
}

/* Security Section */
.page-register__security-section {
  padding: 80px 0;
}

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

.page-register__security-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-register__security-icon {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-register__security-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-register__security-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
}

.page-register__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-register__faq-item {
  background-color: #08160F; /* Background */
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
}

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

.page-register__faq-toggle {
  font-size: 1.5em;
  color: #2AD16F; /* Green */
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.7;
}

/* Final CTA Section */
.page-register__cta-final-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 2.5em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
}

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

  .page-register__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-register__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

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

  .page-register__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .page-register__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-register__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-register__benefits-section,
  .page-register__how-to-section,
  .page-register__security-section,
  .page-register__faq-section,
  .page-register__cta-final-section {
    padding: 60px 0;
  }

  .page-register__benefits-grid,
  .page-register__step-by-step,
  .page-register__security-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-register__benefit-text,
  .page-register__step-text,
  .page-register__security-text,
  .page-register__faq-answer {
    font-size: 0.9em;
  }

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

  /* Mobile responsive for images */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-register__section,
  .page-register__card,
  .page-register__container,
  .page-register__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  /* Mobile responsive for buttons */
  .page-register__cta-button,
  .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;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-register__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px; /* Spacing between stacked buttons */
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 1.8em;
  }
  .page-register__section-title {
    font-size: 1.6em;
  }
  .page-register__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-register__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

/* Color Contrast Fixes (if needed, based on dynamic analysis) */
.page-register__contrast-fix {
  background: #08160F !important; /* Ensures dark background for readability */
  color: #F2FFF6 !important;
  border: 1px solid #2E7A4E !important;
}

.page-register__text-contrast-fix {
  color: #F2FFF6 !important;
  text-shadow: none !important;
}