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

.page-register__hero-section {
  background-color: #000080; /* Auxiliary dark blue */
  color: #ffffff; /* Light text for dark background */
  padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Primary gold color */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary gold color */
  color: #000080; /* Auxiliary dark blue for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.page-register__section-title {
  font-size: 2.5em;
  color: #000080; /* Auxiliary dark blue */
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary gold */
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-register__value-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 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: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
}

.page-register__step-number {
  background-color: #FFD700; /* Primary gold */
  color: #000080; /* Auxiliary dark blue */
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-register__step-title {
  font-size: 1.4em;
  color: #000080;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-register__centered-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-register__conditions-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-register__conditions-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register__conditions-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__condition-item {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.5;
  color: #444444;
  position: relative;
  padding-left: 40px;
}

.page-register__condition-item::before {
  content: '✓';
  color: #FFD700; /* Primary gold */
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-register__faq-section {
  padding: 60px 0 80px;
  background-color: #f0f0f0;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #000080; /* Auxiliary dark blue */
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-item[open] .page-register__faq-question {
  background-color: #FFD700; /* Primary gold when open */
  color: #000080;
}

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

.page-register__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700; /* Gold for toggle icon */
}

.page-register__faq-item[open] .page-register__faq-toggle {
  color: #000080; /* Dark blue when open */
}

.page-register__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__value-image {
    height: 200px;
  }
  .page-register__conditions-content {
    flex-direction: column;
  }
  .page-register__conditions-image {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
    margin: 40px 0 30px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__value-card {
    padding: 20px;
  }
  .page-register__value-image {
    height: 220px;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-register__faq-answer {
    padding: 10px 20px 15px;
  }
  /* Content area images must not overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__value-image {
    max-width: 100%;
    height: auto;
  }
  .page-register__conditions-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.95em;
  }
  .page-register__section-title {
    font-size: 1.6em;
  }
  .page-register__faq-question {
    font-size: 1em;
  }
}