/* style/faq-bonus-promotions.css */
.page-faq-bonus-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  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, #1A2E47 0%, #3B5A80 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-bonus-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-bonus-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #CCCCCC;
}

.page-faq-bonus-promotions__hero-btn,
.page-faq-bonus-promotions__cta-btn,
.page-faq-bonus-promotions__contact-btn,
.page-faq-bonus-promotions__register-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for buttons */
  color: #1A2E47; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-faq-bonus-promotions__hero-btn:hover,
.page-faq-bonus-promotions__cta-btn:hover,
.page-faq-bonus-promotions__contact-btn:hover,
.page-faq-bonus-promotions__register-btn:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-faq-bonus-promotions__content-section {
  background-color: #1A2E47; /* Main dark blue background */
  padding: 60px 0;
}

.page-faq-bonus-promotions__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-faq-bonus-promotions__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

.page-faq-bonus-promotions__faq-item {
  background-color: #2A405F; /* Slightly lighter dark blue for FAQ items */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-bonus-promotions__faq-category-title {
  font-size: 2em;
  color: #FFD700; /* Gold for category titles */
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
}

.page-faq-bonus-promotions__accordion-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.page-faq-bonus-promotions__accordion-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-faq-bonus-promotions__accordion-header {
  font-size: 1.3em;
  color: #FFFFFF; /* White for question headers */
  cursor: pointer;
  padding: 15px 0;
  position: relative;
  transition: color 0.3s ease;
}

.page-faq-bonus-promotions__accordion-header:hover {
  color: #FFD700; /* Gold on hover */
}

.page-faq-bonus-promotions__accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq-bonus-promotions__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-faq-bonus-promotions__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-left: 15px;
  color: #E0E0E0; /* Light gray for content */
}

.page-faq-bonus-promotions__accordion-content p {
  margin-bottom: 1em;
}

.page-faq-bonus-promotions__accordion-content a {
  color: #FFD700; /* Gold for links in content */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq-bonus-promotions__accordion-content a:hover {
  color: #e5c100;
  text-decoration: underline;
}

.page-faq-bonus-promotions__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-bonus-promotions__cta-banner {
  background-color: #1A2E47; /* Dark blue background for CTA */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #FFD700; /* Gold border for emphasis */
}

.page-faq-bonus-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-faq-bonus-promotions__cta-description {
  font-size: 1.3em;
  color: #CCCCCC;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-faq-bonus-promotions__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px; /* Adjust size as needed */
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .page-faq-bonus-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-faq-bonus-promotions__hero-description {
    font-size: 1em;
  }
  .page-faq-bonus-promotions__faq-category-title {
    font-size: 1.8em;
  }
  .page-faq-bonus-promotions__accordion-header {
    font-size: 1.1em;
  }
  .page-faq-bonus-promotions__cta-title {
    font-size: 2em;
  }
  .page-faq-bonus-promotions__cta-description {
    font-size: 1.1em;
  }
  .page-faq-bonus-promotions__cta-image {
    width: 200px;
  }
}