.page-register {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

/* Hero Section */
.page-register__hero-section {
  background-color: #f0f0f0; /* Light background for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  filter: grayscale(100%); /* Example filter, but not for color change */
}

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

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white overlay */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
}

.page-register__hero-button,
.page-register__cta-button,
.page-register__final-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__hero-button:hover,
.page-register__cta-button:hover,
.page-register__final-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-register__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

.page-register__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Section */
.page-register__value-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

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

.page-register__value-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-register__value-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-register__value-text {
  color: #666666;
  font-size: 0.95em;
}

/* Steps Section */
.page-register__steps-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-register__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FCBC45;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-register__step-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #FCBC45;
  border-radius: 50%;
  border: 3px solid #ffffff;
}

.page-register__step-heading {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-register__step-text {
  color: #666666;
}

/* Conditions Section */
.page-register__conditions-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-register__conditions-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-register__condition-item {
  background-color: #f9f9f9;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-register__condition-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 8px;
}

.page-register__condition-text {
  color: #666666;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: #f5f5f5;
}

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

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-register__faq-answer {
  padding: 15px 25px 20px;
  color: #666666;
  font-size: 1em;
  border-top: 1px solid #f0f0f0;
}

/* Final CTA Section */
.page-register__final-cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for strong CTA */
  text-align: center;
  color: #ffffff;
}

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

.page-register__final-cta-section .page-register__section-intro {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-register__section-intro {
    font-size: 0.95em;
  }

  .page-register__hero-container {
    padding: 30px 20px;
  }

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

  .page-register__value-icon {
    width: 200px; /* Ensure minimum size on mobile */
    height: 150px;
  }

  .page-register__step-heading {
    font-size: 1.4em;
  }

  .page-register__condition-heading {
    font-size: 1.2em;
  }

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

  /* Mobile content image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }

  .page-register {
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }

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

  .page-register__container {
    padding: 0 15px;
  }
}