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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #ffffff;
  text-align: center;
}

.page-register__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(10, 36, 99, 0.7); /* Semi-transparent brand dark blue */
  padding: 30px;
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold auxiliary color for title */
  line-height: 1.2;
}

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

.page-register__hero-button,
.page-register__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register__hero-button:hover,
.page-register__cta-button:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
}

.page-register__section-title {
  font-size: 2.2em;
  color: #0A2463; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__cta-final-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.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: 250px; /* Min height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-register__cta-button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #f8f8f8;
  border-left: 5px solid #E3B505;
  padding: 20px;
  border-radius: 8px;
}

.page-register__step-number {
  background-color: #0A2463;
  color: #E3B505;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4em;
  flex-shrink: 0;
  margin-right: 20px;
}

.page-register__step-content {
  flex-grow: 1;
}

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

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

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

.page-register__condition-item {
  background-color: #f8f8f8;
  border-left: 4px solid #0A2463;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 1em;
  line-height: 1.6;
}

.page-register__condition-item strong {
  color: #0A2463;
}

.page-register__cta-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
}

.page-register__cta-link:hover {
  color: #E3B505;
}

.page-register__faq-container {
  margin-top: 30px;
}

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

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A2463;
  cursor: pointer;
  background-color: #fdfdfd;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #E3B505;
  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;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

.page-register__cta-final-section {
  text-align: center;
  padding-bottom: 60px;
}

.page-register__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-register__hero-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-register__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-register__hero-button,
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .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: 15px 20px;
  }
  .page-register__faq-answer {
    padding: 0 20px 15px;
  }
  /* Ensure all content images within .page-register are responsive */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.5em;
  }
  .page-register__hero-content {
    padding: 20px;
  }
  .page-register__section-title {
    font-size: 1.6em;
  }
  .page-register__value-card,
  .page-register__step-item,
  .page-register__condition-item,
  .page-register__faq-item {
    padding: 15px;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-register__faq-answer {
    padding: 0 15px 10px;
  }
}