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

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

/* Hero Section */
.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero to contrast with light text/buttons */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-register__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-register__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-register__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

.page-register__button--register:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-register__button--login {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-register__button--login:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.page-register__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

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

.page-register__value-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-register__value-card:hover {
  transform: translateY(-10px);
}

.page-register__value-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-register__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-register__step-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-register__button--join-today {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-register__button--join-today:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

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

.page-register__conditions-list {
  list-style: disc;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
}

.page-register__condition-item {
  margin-bottom: 15px;
  color: #555555;
  font-size: 1.05em;
}

.page-register__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.page-register__link:hover {
  text-decoration: underline;
}

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

.page-register__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-register__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

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

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

.page-register__faq-answer {
  padding: 20px;
  border-top: 1px solid #eee;
  color: #555555;
  background-color: #FFFFFF;
}

.page-register__faq-answer p {
  margin: 0;
}

/* CTA Section */
.page-register__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-register__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-register__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-register__button--final-cta:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

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

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

  .page-register__button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

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

  .page-register__value-cards,
  .page-register__steps-list {
    grid-template-columns: 1fr;
  }

  .page-register__value-image,
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  
  .page-register__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  /* Mobile content area images must use max-width: 100%; height: auto; */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure no image filters are used */
.page-register img {
  filter: none; /* Explicitly disable any potential filters */
}

/* Ensure content area images are not too small */
.page-register__value-image,
.page-register__hero-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure CSS width/height for images does not contradict HTML attributes, or use responsive */
.page-register__hero-image {
  width: 100%; /* Will be overridden by object-fit cover and parent container */
  height: 100%;
}
.page-register__value-image {
  width: 100%; /* Max width will control display size */
  height: auto;
}