.page-index-registration-rewards {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-index-registration-rewards__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #007bff;
}

.page-index-registration-rewards__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

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

.page-index-registration-rewards__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-registration-rewards__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-registration-rewards__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-registration-rewards__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-index-registration-rewards__button--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-index-registration-rewards__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-index-registration-rewards__button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-index-registration-rewards__button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
  transform: translateY(-3px);
}

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

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

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

.page-index-registration-rewards__why-join-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-registration-rewards__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-registration-rewards__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-index-registration-rewards__feature-card:hover {
  transform: translateY(-10px);
}

.page-index-registration-rewards__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-registration-rewards__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-registration-rewards__feature-description {
  color: #666666;
}

.page-index-registration-rewards__registration-guide-section {
  padding: 80px 0;
}

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

.page-index-registration-rewards__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 5px solid #007bff;
}

.page-index-registration-rewards__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 15px;
  display: block;
}

.page-index-registration-rewards__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-registration-rewards__step-description {
  color: #666666;
}

.page-index-registration-rewards__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-registration-rewards__bonuses-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-registration-rewards__bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-registration-rewards__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.page-index-registration-rewards__bonus-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-registration-rewards__bonus-card h3 {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 20px 10px 20px;
}

.page-index-registration-rewards__bonus-description {
  color: #666666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-registration-rewards__bonus-card .page-index-registration-rewards__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
  border-radius: 25px;
}

.page-index-registration-rewards__bonus-disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #888888;
}

.page-index-registration-rewards__app-download-section {
  padding: 80px 0;
}

.page-index-registration-rewards__app-download-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-index-registration-rewards__app-content {
  flex: 1;
  min-width: 300px;
}

.page-index-registration-rewards__app-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-registration-rewards__app-features-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffc107"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555555;
}

.page-index-registration-rewards__app-features-list li strong {
  color: #007bff;
}

.page-index-registration-rewards__app-download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-index-registration-rewards__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-registration-rewards__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-registration-rewards__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-registration-rewards__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-registration-rewards__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-registration-rewards__faq-question {
  font-size: 1.2em;
  color: #007bff;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-index-registration-rewards__faq-question:hover {
  background-color: #e6f2ff;
}

.page-index-registration-rewards__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #ffc107;
}

.page-index-registration-rewards__faq-question.active::after {
  content: '-';
}

.page-index-registration-rewards__faq-answer {
  padding: 0 20px 20px 20px;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-registration-rewards__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px 20px 20px 20px;
}

.page-index-registration-rewards__cta-section {
  padding: 80px 0;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-index-registration-rewards__cta-section .page-index-registration-rewards__section-title {
  color: #ffc107;
}

.page-index-registration-rewards__cta-section .page-index-registration-rewards__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-index-registration-rewards__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .page-index-registration-rewards__hero-title {
    font-size: 2.8em;
  }

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

  .page-index-registration-rewards__app-download-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-registration-rewards__hero-title {
    font-size: 2.2em;
  }

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

  .page-index-registration-rewards__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-registration-rewards__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

  .page-index-registration-rewards__features-grid,
  .page-index-registration-rewards__steps-grid,
  .page-index-registration-rewards__bonus-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-index-registration-rewards__app-download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-index-registration-rewards__app-download-buttons .page-index-registration-rewards__button {
    width: 90%;
  }

  .page-index-registration-rewards__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-index-registration-rewards__cta-buttons .page-index-registration-rewards__button {
    width: 90%;
  }

  /* Mobile content area image overflow prevention */
  .page-index-registration-rewards img {
    max-width: 100%;
    height: auto;
  }

  .page-index-registration-rewards__hero-image {
    max-width: 100%;
    height: 400px; /* fixed height for mobile hero to maintain aspect ratio */
    object-fit: cover;
  }

  .page-index-registration-rewards__feature-icon,
  .page-index-registration-rewards__bonus-image,
  .page-index-registration-rewards__app-image {
    max-width: 100%;
    height: auto;
  }
  
  .page-index-registration-rewards__feature-card,
  .page-index-registration-rewards__step-card,
  .page-index-registration-rewards__bonus-card {
    min-height: auto;
  }
}

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

  .page-index-registration-rewards__hero-description {
    font-size: 0.9em;
  }

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

  .page-index-registration-rewards__hero-image {
    height: 300px;
  }
}