.page-register {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #0A2463; /* Main brand color for hero background */
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2; /* Subtle background image */
}

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

.page-register__main-title {
  font-size: 3.2em;
  color: #E3B505; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-register__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Accent color for CTA button */
  color: #0A2463; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__cta-button:hover {
  background-color: #f5db9c; /* Lighter shade of accent on hover */
  transform: translateY(-3px);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #E3B505; /* Accent color for section titles */
  text-align: center;
  margin: 60px 0 30px;
  font-weight: bold;
}

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

.page-register__value-section {
  background-color: rgba(10, 36, 99, 0.8); /* Semi-transparent main color */
  padding: 60px 0;
}

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

.page-register__value-item {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-register__value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-register__value-item img {
  width: 250px; /* Enforce min 200px */
   /* Maintain aspect ratio for 400x300 example */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-register__value-title {
  font-size: 1.8em;
  color: #E3B505; /* Accent color for value titles */
  margin-bottom: 15px;
}

.page-register__value-text {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register__step-number {
  background-color: #E3B505; /* Accent color for step numbers */
  color: #0A2463; /* Main color for step number text */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-register__step-title {
  font-size: 2em;
  color: #E3B505; /* Accent color for step titles */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-register__cta-button--bottom {
  margin-top: 50px;
}

.page-register__conditions-section {
  background-color: rgba(10, 36, 99, 0.8);
  padding: 60px 0;
}

.page-register__conditions-list {
  list-style: disc;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 30px;
  padding-left: 40px;
  font-size: 1.05em;
}

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

.page-register__text-link {
  color: #E3B505; /* Accent color for text links */
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-register__text-link:hover {
  color: #f5db9c;
}

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

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

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.3em;
  font-weight: bold;
  color: #E3B505; /* Accent color for FAQ questions */
  cursor: pointer;
  background-color: #0A2463; /* Main color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-register__faq-question span:first-child {
  flex-grow: 1;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #f0f0f0;
  transition: transform 0.3s ease;
}

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

.page-register__faq-answer {
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-register__call-to-action {
  background-color: #0A2463; /* Main color for CTA section */
  padding: 80px 20px;
  text-align: center;
}

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

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

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

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

  .page-register__section-title {
    font-size: 2em;
    margin: 40px 0 25px;
  }

  .page-register__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-register__value-grid {
    grid-template-columns: 1fr;
  }

  .page-register__value-item img {
    width: 200px; /* Ensure min 200px on mobile */
    
  }

  .page-register__step-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .page-register__step-number {
    margin: 0 auto 20px auto;
  }

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

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

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

  .page-register__conditions-list, .page-register__faq-list {
    padding-left: 20px;
  }

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

  /* Mobile content area image constraint */
  .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.95em;
  }

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

  .page-register__value-title {
    font-size: 1.5em;
  }

  .page-register__step-title {
    font-size: 1.5em;
  }

  .page-register__faq-question {
    font-size: 1em;
  }
}