.page-register {
  color: #333333; /* Dark text for default (light) body background */
}

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
  background-color: #003366; /* Deep blue background for contrast */
  overflow: hidden;
  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.6; /* Slightly dim image to make text pop */
}

.page-register__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #ffffff; /* White text on dark hero background */
}

.page-register__hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-register__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-register__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold button */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

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

.page-register__section-title {
  font-size: 2.5rem;
  color: #003366; /* Deep blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-register__section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

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

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

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

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

.page-register__value-heading {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register__value-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.page-register__button {
  display: inline-block;
  background-color: #003366; /* Deep blue button */
  color: #ffffff; /* White text on blue button */
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-register__button:hover {
  background-color: #004488;
}

.page-register__button--center {
  display: block;
  margin: 50px auto 0 auto;
  width: fit-content;
}

.page-register__steps-section {
  padding: 60px 0;
}

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

.page-register__step-item {
  position: relative;
  padding: 30px 40px 30px 90px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-register__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700; /* Gold step number */
  color: #003366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-register__step-heading {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-register__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.page-register__step-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-register__step-button:hover {
  background-color: #e6c200;
}

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

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

.page-register__conditions-item {
  background-color: #ffffff;
  border-left: 5px solid #003366;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444444;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-register__faq-section {
  padding: 60px 0;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.page-register__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  color: #FFD700;
  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;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555555;
}

.page-register__cta-section {
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-register__cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for CTA title */
}

.page-register__cta-description {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold button */
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3rem;
  }
  .page-register__section-title {
    font-size: 2.2rem;
  }
  .page-register__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
  }
  .page-register__hero-title {
    font-size: 2.5rem;
  }
  .page-register__hero-description {
    font-size: 1.1rem;
  }
  .page-register__hero-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .page-register__container {
    padding: 30px 15px;
  }
  .page-register__section-title {
    font-size: 2rem;
  }
  .page-register__section-description {
    font-size: 1rem;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-item {
    padding: 20px 20px 20px 70px;
  }
  .page-register__step-item::before {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    left: 20px;
  }
  .page-register__step-heading {
    font-size: 1.5rem;
  }
  .page-register__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }
  .page-register__faq-toggle {
    right: 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 18px 20px;
  }
  .page-register__cta-title {
    font-size: 2rem;
  }
  .page-register__cta-description {
    font-size: 1rem;
  }
  .page-register__cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  /* Mobile content area images must be constrained */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__value-icon {
    width: 100%; /* Ensure it doesn't overflow */
    height: auto;
    max-width: 300px; /* Example max width */
  }
}

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