.page-register {
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
}

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

/* Hero Section */
.page-register__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.6)); /* Gradient overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

/* General Section Styling */
.page-register__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  color: #e0e0e0;
}

.page-register__text-content--center {
  text-align: center;
}

.page-register__text-content--light {
  color: #ffffff;
}

.page-register__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-register__inline-link:hover {
  text-decoration: underline;
  color: #FFC000;
}

/* CTA Buttons */
.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  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 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  background-color: #FFC000; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-register__cta-button--secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  margin-top: 20px;
}

.page-register__cta-button--secondary:hover {
  background-color: #A00000; /* Slightly darker red */
}

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

/* Value Section */
.page-register__value-section {
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background */
  padding: 60px 0;
}

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

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

.page-register__value-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-register__value-icon {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

/* Steps Section */
.page-register__steps-section {
  padding: 60px 0;
  background-color: rgba(139, 0, 0, 0.6); /* Deep red semi-transparent background */
}

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

.page-register__step-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 70px;
}

.page-register__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.page-register__step-description {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-register__image-container {
  text-align: center;
  margin: 50px 0;
}

.page-register__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Conditions Section */
.page-register__conditions-section {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background */
}

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

.page-register__rule-item {
  background-color: rgba(255, 255, 255, 0.05); /* Very light semi-transparent background */
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register__rule-item strong {
  color: #FFD700;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
  background-color: rgba(139, 0, 0, 0.6); /* Deep red semi-transparent background */
}

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

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Lighter semi-transparent background */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-register__faq-item[open] .page-register__faq-question {
  background-color: rgba(255, 215, 0, 0.2); /* Slightly golden tint when open */
  color: #FFD700;
  border-bottom: 1px solid #FFD700;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-register__faq-answer p {
  margin-bottom: 10px;
}

.page-register__faq-answer ul {
  margin-left: 20px;
  list-style-type: disc;
}

.page-register__faq-answer li {
  margin-bottom: 5px;
}

.page-register__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

/* Final CTA Section */
.page-register__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #8B0000, #FFD700); /* Blend of primary colors */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register__cta-final-container {
  position: relative;
  z-index: 1;
}

.page-register__section-title--light {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__cta-final-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  filter: grayscale(100%); /* Maintain original image color, but make it subtle */
}

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

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

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

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 20px;
  }

  .page-register__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-register__text-content {
    font-size: 1em;
  }

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

  .page-register__value-item {
    padding: 25px;
  }

  .page-register__value-icon,
  .page-register__process-image,
  .page-register__faq-image,
  .page-register__cta-final-image {
    max-width: 100%;
    height: auto;
  }

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

  .page-register__step-item {
    padding-left: 60px;
  }

  .page-register__step-item::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }

  .page-register__rule-item {
    font-size: 0.95em;
    padding: 18px 20px;
  }

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

  .page-register__faq-answer {
    font-size: 0.95em;
    padding: 18px 20px;
  }

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

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

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

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

  .page-register__cta-button {
    width: 100%;
    box-sizing: border-box;
  }

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

  .page-register__value-icon {
    width: 150px;
    height: 120px;
  }

  .page-register__step-heading {
    font-size: 1.3em;
  }
}