.page-register {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-register__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366;
  padding: 0; /* Hero content will handle spacing */
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-register__hero-container {
  position: relative;
  max-width: 100%; /* Prevents horizontal scroll */
  margin: 0 auto;
}

.page-register__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  max-width: 90%;
}

.page-register__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Bright red for emphasis */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-register__value-section,
.page-register__steps-section,
.page-register__rules-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

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

.page-register__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

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

.page-register__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-register__value-item img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-register__value-item p {
  color: #555555;
  font-size: 1.05em;
}

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

.page-register__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #003366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-heading {
  font-size: 1.8em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-item p {
  color: #555555;
  font-size: 1.05em;
}

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

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

.page-register__rules-list li {
  background-color: #ffffff;
  border-left: 5px solid #003366;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  color: #333333;
}

.page-register__rules-list li:last-child {
  margin-bottom: 0;
}

.page-register__rules-text {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
}

.page-register__rules-text a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-register__rules-text a:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

.page-register__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  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;
  color: #003366;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f4f8;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

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

.page-register__faq-question::marker {
  display: none; /* Hide default marker */
}

.page-register__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  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;
  font-size: 1.05em;
  color: #555555;
  border-top: 1px solid #eeeeee;
}

.page-register__cta-bottom-section {
  background: linear-gradient(90deg, #003366, #1a4d80);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-register__cta-bottom-content {
  max-width: 800px;
}

.page-register__cta-bottom-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register__cta-bottom-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-register__cta-button--final {
  background-color: #DC143C;
  font-size: 1.4em;
  padding: 18px 35px;
}

.page-register__cta-button--final:hover {
  background-color: #a30f2c;
  transform: translateY(-3px) scale(1.02);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-register__main-title {
    font-size: 2.8em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2.2em;
  }
  .page-register__value-item img {
    max-width: 300px;
  }
  .page-register__step-heading {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed */
  }
  .page-register__main-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: 2em;
    margin-bottom: 40px;
  }
  .page-register__value-grid {
    grid-template-columns: 1fr;
  }
  .page-register__value-item {
    padding: 25px;
  }
  .page-register__value-item img,
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small on mobile */
    min-height: 200px;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-item::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-register__step-heading {
    font-size: 1.3em;
  }
  .page-register__rules-list li {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer {
    font-size: 1em;
    padding: 10px 20px 20px;
  }
  .page-register__cta-bottom-title {
    font-size: 2em;
  }
  .page-register__cta-bottom-description {
    font-size: 1.1em;
  }
  .page-register__cta-button--final {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-register__main-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.95em;
  }
  .page-register__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__value-item img,
  .page-register__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-register__step-item {
    padding: 20px;
  }
  .page-register__step-item::before {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-register__step-heading {
    font-size: 1.2em;
  }
  .page-register__rules-list li {
    font-size: 0.95em;
    padding: 10px 15px;
  }
  .page-register__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-register__faq-answer {
    font-size: 0.95em;
    padding: 8px 15px 15px;
  }
  .page-register__cta-bottom-title {
    font-size: 1.8em;
  }
  .page-register__cta-bottom-description {
    font-size: 1em;
  }
  .page-register__cta-button--final {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}