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

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: #f8f8f8;
  overflow: hidden;
  text-align: center;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-register__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for highlight */
  font-weight: bold;
}

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

.page-register__hero-button,
.page-register__cta-button,
.page-register__steps-button,
.page-register__final-cta-button {
  display: inline-block;
  background-color: #CC3333; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-register__hero-button:hover,
.page-register__cta-button:hover,
.page-register__steps-button:hover,
.page-register__final-cta-button:hover {
  background-color: #FFCC00; /* Auxiliary color on hover */
  color: #CC3333;
  transform: translateY(-2px);
}

.page-register__section-title {
  font-size: 2.5em;
  color: #CC3333; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 50px auto;
  color: #555555;
}

.page-register__value-section,
.page-register__steps-section,
.page-register__conditions-section,
.page-register__faq-section,
.page-register__offers-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-register__value-card,
.page-register__offer-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-register__value-card:hover,
.page-register__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-register__value-icon,
.page-register__offer-image {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 400px; /* Limit max width to ensure it's not too large */
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block; /* Remove extra space below image */
}

.page-register__card-title {
  font-size: 1.4em;
  color: #333333;
  margin-bottom: 10px;
}

.page-register__card-title a {
  color: #CC3333;
  text-decoration: none;
}

.page-register__card-title a:hover {
  text-decoration: underline;
}

.page-register__card-description {
  font-size: 0.95em;
  color: #666666;
}

.page-register__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

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

.page-register__step-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-left: 5px solid #CC3333; /* Main brand color highlight */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.page-register__step-description {
  font-size: 1em;
  color: #666666;
}

.page-register__steps-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
}

.page-register__conditions-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-register__conditions-text {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 20px;
}

.page-register__conditions-list {
  list-style: disc;
  margin-left: 25px;
  color: #555555;
}

.page-register__conditions-item {
  margin-bottom: 10px;
}

.page-register__conditions-item strong {
  color: #333333;
}

.page-register__conditions-item a {
  color: #CC3333;
  text-decoration: none;
}

.page-register__conditions-item a:hover {
  text-decoration: underline;
}

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

.page-register__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-register__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #f5f5f5;
  transition: background-color 0.2s ease;
}

.page-register__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #CC3333;
  transition: transform 0.2s ease;
}

.page-register__faq-item[open] > .page-register__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

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

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

.page-register__offer-link {
  display: inline-block;
  margin-top: 15px;
  color: #CC3333;
  text-decoration: none;
  font-weight: bold;
}

.page-register__offer-link:hover {
  text-decoration: underline;
}

.page-register__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #FFCC00; /* Auxiliary color */
  border-radius: 10px;
}

.page-register__final-cta-text {
  font-size: 1.5em;
  color: #CC3333;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-register__final-cta-button {
  background-color: #CC3333;
  color: #ffffff;
}

.page-register__final-cta-button:hover {
  background-color: #ffffff;
  color: #CC3333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register__hero-title {
    font-size: 2.2em;
  }

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

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

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

  .page-register__value-section,
  .page-register__steps-section,
  .page-register__conditions-section,
  .page-register__faq-section,
  .page-register__offers-section {
    margin: 40px auto;
    padding: 20px 15px;
  }

  .page-register__hero-section {
    padding: 60px 15px;
  }

  .page-register__hero-image,
  .page-register__value-icon,
  .page-register__offer-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are responsive and don't overflow */
  .page-register img {
    max-width: 100%;
    height: auto;
  }

  .page-register {
    overflow-x: hidden;
  }

  .page-register__final-cta-text {
    font-size: 1.2em;
  }
}

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

  .page-register__hero-button,
  .page-register__cta-button,
  .page-register__steps-button,
  .page-register__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-register__faq-question::after {
    right: 20px;
  }

  .page-register__faq-answer {
    padding: 0 20px 15px 20px;
  }
}