.page-index-registration-guide {
  color: #333333; /* Dark text for light body background */
}

.page-index-registration-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-registration-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-registration-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-index-registration-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-registration-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-index-registration-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-registration-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-registration-guide__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-index-registration-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-index-registration-guide__steps-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-index-registration-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.page-index-registration-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-index-registration-guide__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-registration-guide__step-description {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 700px;
}

.page-index-registration-guide__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-index-registration-guide__step-button {
  display: inline-block;
  background-color: #003366;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-guide__step-button:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-index-registration-guide__benefits-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-index-registration-guide__benefit-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-guide__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-index-registration-guide__benefit-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index-registration-guide__card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index-registration-guide__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-index-registration-guide__more-promotions-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-registration-guide__more-promotions-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-registration-guide__faq-section {
  background-color: #f0f4f8;
  padding: 60px 0;
}

.page-index-registration-guide__faq-list {
  margin-top: 40px;
}

.page-index-registration-guide__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.page-index-registration-guide__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-registration-guide__faq-question:hover {
  background-color: #f5f5f5;
}

.page-index-registration-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-index-registration-guide__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-registration-guide__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-index-registration-guide__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555555;
}

.page-index-registration-guide__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-index-registration-guide__contact-button:hover {
  background-color: #e6c200;
}

.page-index-registration-guide__cta-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-index-registration-guide__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-registration-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-index-registration-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index-registration-guide__cta-link {
  display: block;
  color: #FFD700;
  font-size: 1.1em;
  text-decoration: none;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-index-registration-guide__cta-link:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-guide__hero-title {
    font-size: 2.8em;
  }

  .page-index-registration-guide__hero-description {
    font-size: 1.1em;
  }

  .page-index-registration-guide__section-title {
    font-size: 2.2em;
  }

  .page-index-registration-guide__step-title {
    font-size: 1.6em;
  }

  .page-index-registration-guide__card-title {
    font-size: 1.3em;
  }

  .page-index-registration-guide__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-registration-guide__hero-section {
    padding: 60px 15px;
  }

  .page-index-registration-guide__hero-title {
    font-size: 2.2em;
  }

  .page-index-registration-guide__hero-description {
    font-size: 1em;
  }

  .page-index-registration-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-registration-guide__container {
    padding: 30px 15px;
  }

  .page-index-registration-guide__section-title {
    font-size: 2em;
  }

  .page-index-registration-guide__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-index-registration-guide__step-item {
    padding: 20px;
    margin-bottom: 40px;
  }

  .page-index-registration-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-index-registration-guide__step-title {
    font-size: 1.4em;
  }

  .page-index-registration-guide__step-description {
    font-size: 0.95em;
  }

  .page-index-registration-guide__step-item img,
  .page-index-registration-guide__benefit-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-index-registration-guide__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-registration-guide__card-title {
    font-size: 1.2em;
  }

  .page-index-registration-guide__more-promotions-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-index-registration-guide__faq-answer {
    padding: 0 20px;
  }

  .page-index-registration-guide__faq-answer.active {
    padding: 10px 20px 20px;
  }

  .page-index-registration-guide__cta-section {
    padding: 60px 15px;
  }

  .page-index-registration-guide__cta-title {
    font-size: 2em;
  }

  .page-index-registration-guide__cta-description {
    font-size: 1em;
  }

  .page-index-registration-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

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

  .page-index-registration-guide__section-title {
    font-size: 1.8em;
  }

  .page-index-registration-guide__cta-title {
    font-size: 1.8em;
  }

  .page-index-registration-guide__hero-image img,
  .page-index-registration-guide__step-item img,
  .page-index-registration-guide__benefit-card img {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure no overflow */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-index-registration-guide {
    max-width: 100%;
    overflow-x: hidden;
  }
}