/* style/faq-bonus-promotions.css */
.page-faq-bonus-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-faq-bonus-promotions__hero {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-bonus-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,gold_navy_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-faq-bonus-promotions__hero > * {
  position: relative;
  z-index: 2;
}

.page-faq-bonus-promotions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-faq-bonus-promotions__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-faq-bonus-promotions__content {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-faq-bonus-promotions__intro {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-faq-bonus-promotions__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-faq-bonus-promotions__section {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-faq-bonus-promotions__section-title {
  font-size: 2.2em;
  color: #000080;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-faq-bonus-promotions__sub-section-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq-bonus-promotions__section p {
  margin-bottom: 15px;
  color: #444;
}

.page-faq-bonus-promotions__section ul,
.page-faq-bonus-promotions__section ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-faq-bonus-promotions__section li {
  margin-bottom: 8px;
  color: #444;
}

.page-faq-bonus-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-bonus-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-bonus-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-bonus-promotions__cta-button--secondary {
  background-color: #000080;
  color: #FFD700;
}

.page-faq-bonus-promotions__cta-button--secondary:hover {
  background-color: #000066;
  color: #FFD700;
}

.page-faq-bonus-promotions__link-button {
  display: inline-block;
  color: #000080;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
  margin-top: 15px;
}

.page-faq-bonus-promotions__link-button:hover {
  color: #FFD700;
  border-color: #000080;
}

.page-faq-bonus-promotions__final-cta {
  text-align: center;
  background-color: #000080;
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-bonus-promotions__final-cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-faq-bonus-promotions__final-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq-bonus-promotions__title {
    font-size: 2.5em;
  }

  .page-faq-bonus-promotions__subtitle {
    font-size: 1.2em;
  }

  .page-faq-bonus-promotions__section-title {
    font-size: 1.8em;
  }

  .page-faq-bonus-promotions__sub-section-title {
    font-size: 1.4em;
  }

  .page-faq-bonus-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq-bonus-promotions__final-cta-title {
    font-size: 2em;
  }

  .page-faq-bonus-promotions__final-cta p {
    font-size: 1em;
  }

  .page-faq-bonus-promotions__intro {
    padding: 20px;
  }

  .page-faq-bonus-promotions__section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-faq-bonus-promotions__title {
    font-size: 2em;
  }

  .page-faq-bonus-promotions__subtitle {
    font-size: 1em;
  }

  .page-faq-bonus-promotions__hero {
    padding: 60px 0;
  }

  .page-faq-bonus-promotions__content {
    padding: 30px 0;
  }

  .page-faq-bonus-promotions__final-cta {
    padding: 30px;
  }

  .page-faq-bonus-promotions__final-cta-title {
    font-size: 1.5em;
  }
}