.page-faq-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-faq-promotions__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2A3B5C 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-faq-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);
  font-weight: bold;
}

.page-faq-promotions__hero-subtitle {
  font-size: 1.5em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-faq-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-promotions__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-faq-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-faq-promotions__content-section {
  padding: 60px 0;
}

.page-faq-promotions__intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-faq-promotions__intro p {
    margin-bottom: 1.5em;
}

.page-faq-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-faq-promotions__faq-list {
  margin-top: 40px;
}

.page-faq-promotions__faq-item {
  background-color: #1A2E4B; /* Slightly lighter dark blue for FAQ items */
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-faq-promotions__faq-question {
  font-size: 1.8em;
  color: #FFD700; /* Gold for questions */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq-promotions__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0; /* Light grey for answers */
}

.page-faq-promotions__faq-answer ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-faq-promotions__faq-answer li {
  margin-bottom: 8px;
}

.page-faq-promotions__faq-answer a.page-faq-promotions__inline-cta {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-faq-promotions__faq-answer a.page-faq-promotions__inline-cta:hover {
    color: #E6C200;
}

.page-faq-promotions__image-full-width {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-faq-promotions__image-right {
  float: right;
  width: 40%;
  max-width: 400px;
  margin: 0 0 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-faq-promotions__image-left {
  float: left;
  width: 40%;
  max-width: 400px;
  margin: 0 30px 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-faq-promotions__call-to-action {
  text-align: center;
  background-color: #1A2E4B;
  padding: 50px 30px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-promotions__call-to-action .page-faq-promotions__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq-promotions__call-to-action .page-faq-promotions__section-title::after {
    display: none;
}

.page-faq-promotions__call-to-action p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-faq-promotions__related-links {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.page-faq-promotions__related-links .page-faq-promotions__section-title {
    font-size: 2em;
    margin-bottom: 30px;
}

.page-faq-promotions__related-links .page-faq-promotions__section-title::after {
    width: 60px;
}

.page-faq-promotions__link-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-faq-promotions__link-list li a {
    display: block;
    background-color: #0A192F;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.page-faq-promotions__link-list li a:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

/* Clearfix for floated images */
.page-faq-promotions__faq-answer::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-faq-promotions__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-faq-promotions__faq-question {
    font-size: 1.5em;
  }

  .page-faq-promotions__faq-answer {
    font-size: 1em;
  }

  .page-faq-promotions__image-right, .page-faq-promotions__image-left {
    float: none;
    width: 80%;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-faq-promotions__hero-section {
    padding: 80px 0 40px;
  }

  .page-faq-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-faq-promotions__hero-subtitle {
    font-size: 1em;
  }

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

  .page-faq-promotions__content-section {
    padding: 40px 0;
  }

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

  .page-faq-promotions__faq-item {
    padding: 20px;
  }

  .page-faq-promotions__faq-question {
    font-size: 1.3em;
  }

  .page-faq-promotions__link-list {
      flex-direction: column;
      align-items: center;
  }

  .page-faq-promotions__link-list li {
      width: 100%;
      max-width: 300px;
  }
}

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

  .page-faq-promotions__hero-subtitle {
    font-size: 0.9em;
  }

  .page-faq-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-faq-promotions__faq-question {
    font-size: 1.1em;
  }

  .page-faq-promotions__faq-answer {
    font-size: 0.9em;
  }

  .page-faq-promotions__image-full-width, .page-faq-promotions__image-right, .page-faq-promotions__image-left {
    width: 95%;
    margin: 15px auto;
  }
}