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

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px; /* Adjusted padding, header offset handled by main */
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.2)); /* Subtle gradient overlay */
}

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

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

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  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: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */\  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-register__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-register__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.page-register__value-section, .page-register__steps-section, .page-register__conditions-section, .page-register__faq-section, .page-register__cta-final-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for sections */
  margin-bottom: 20px;
}

.page-register__value-section:nth-child(odd), .page-register__conditions-section:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}

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

.page-register__benefit-item {
  background-color: rgba(139, 0, 0, 0.3); /* Deep red transparent background */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-register__benefit-icon {
  width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.page-register__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

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

.page-register__step-item {
  background-color: rgba(255, 215, 0, 0.1); /* Gold transparent background */
  border-left: 5px solid #FFD700;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-register__rules-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 40px;
  color: #e0e0e0;
}

.page-register__rule-item {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.1em;
}

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

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

.page-register__faq-item {
  background-color: rgba(139, 0, 0, 0.2); /* Deep red transparent background */
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-register__faq-question {
  width: 100%;
  background-color: rgba(255, 215, 0, 0.15); /* Gold transparent background */
  color: #FFD700;
  border: none;
  padding: 20px 25px;
  font-size: 1.3em;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover, .page-register__faq-question.active {
  background-color: rgba(255, 215, 0, 0.25);
}

.page-register__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-register__faq-answer p {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-register__cta-final-section {
  text-align: center;
  padding: 80px 20px;
  background-color: rgba(255, 215, 0, 0.05); /* Light gold transparent background */
}

.page-register__cta-button--final {
  font-size: 1.4em;
  padding: 18px 40px;
  margin-top: 30px;
}

.page-register__login-link {
  margin-top: 25px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-register__login-link a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__login-link a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__benefit-icon {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    padding: 60px 15px 40px;
  }
  .page-register__hero-title {
    font-size: 2.5em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register__content-wrapper {
    padding: 30px 15px;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-intro {
    font-size: 1em;
  }
  .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__benefit-item {
    padding: 25px;
  }
  .page-register__benefit-icon {
    width: 200px; /* Ensure images are not too small */
    height: auto;
    max-width: 100%; /* Important for mobile responsiveness */
  }
  .page-register__benefit-title {
    font-size: 1.5em;
  }
  .page-register__step-item {
    padding: 20px 25px;
  }
  .page-register__step-title {
    font-size: 1.4em;
  }
  .page-register__rule-item, .page-register__faq-answer p {
    font-size: 0.95em;
  }
  .page-register__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register__faq-answer.active {
    padding: 15px 20px;
  }
  .page-register__cta-button--final {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-register__login-link {
    font-size: 1em;
  }

  /* Mobile content image overflow prevention */
  .page-register img {
    max-width: 100%;
    height: auto;
  }
  .page-register {
    overflow-x: hidden;
  }
}