.page-register {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-register__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-register__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight title with accent color */
}

.page-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

.page-register__cta-button--primary {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000; /* Black text for primary CTA */
}

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

.page-register__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF; /* White text for secondary CTA */
}

.page-register__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

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

.page-register__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-register__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-register__value-section {
  background-color: #f8f8f8;
}

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

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

.page-register__feature-item:hover {
  transform: translateY(-10px);
}

.page-register__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.page-register__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__cta-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-register__cta-link:hover {
  text-decoration: underline;
}

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

.page-register__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
}

.page-register__step-number {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
}

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

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

.page-register__conditions-list {
  list-style: disc inside;
  padding-left: 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05em;
  line-height: 1.8;
  color: #333333;
}

.page-register__condition-item {
  margin-bottom: 10px;
}

.page-register__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 500;
}

.page-register__inline-link:hover {
  text-decoration: underline;
}

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

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

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

.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 25px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px;
  }

  .page-register__main-title {
    font-size: 2.2em;
  }

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

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

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

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

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

  .page-register__feature-item,
  .page-register__step-item {
    padding: 25px;
    padding-left: 60px;
  }

  .page-register__step-number {
    left: 15px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-register__feature-icon {
    width: 250px;
    height: auto;
  }

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

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

  /* Ensure content area images are responsive and don't overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-register__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .page-register__feature-item,
  .page-register__step-item {
    padding-left: 25px;
  }

  .page-register__step-number {
    position: static;
    margin-bottom: 10px;
  }
}