/* style/faq-promotions.css */
.page-faq-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #2C3E50; /* Dark blue main background */
}

.page-faq-promotions__hero {
  background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2C3E50;
  position: relative;
  overflow: hidden;
}

.page-faq-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
  color: #2C3E50;
}

.page-faq-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #2C3E50;
  font-weight: bold;
}

.page-faq-promotions__hero-title .highlight {
  color: #8B4513; /* Darker brown for contrast on gold */
}

.page-faq-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-faq-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-faq-promotions__cta-button {
  display: inline-block;
  background-color: #2C3E50; /* Dark blue for button background */
  color: #FFD700; /* Gold text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FFD700;
}

.page-faq-promotions__cta-button:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #2C3E50; /* Dark blue text on hover */
  transform: translateY(-3px);
  border-color: #2C3E50;
}

.page-faq-promotions__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq-promotions__section:last-of-type {
  border-bottom: none;
}

.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__accordion {
  margin-top: 30px;
}

.page-faq-promotions__accordion-item {
  background-color: #3C4F62; /* Slightly lighter dark blue for accordion items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq-promotions__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #4A5F73; /* Even lighter dark blue for header */
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.2em;
  color: #FFD700; /* Gold for question text */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq-promotions__accordion-header:hover {
  background-color: #5B7085;
}

.page-faq-promotions__accordion-header[aria-expanded="true"] {
  background-color: #FFD700; /* Gold when expanded */
  color: #2C3E50; /* Dark blue text when expanded */
}

.page-faq-promotions__accordion-header[aria-expanded="true"] .page-faq-promotions__accordion-icon {
  transform: rotate(45deg);
  color: #2C3E50;
}

.page-faq-promotions__accordion-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-faq-promotions__accordion-icon::before,
.page-faq-promotions__accordion-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.page-faq-promotions__accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.page-faq-promotions__accordion-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 9px;
}

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

.page-faq-promotions__accordion-content p {
  padding-bottom: 20px;
  margin: 0;
}

.page-faq-promotions__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-faq-promotions__accordion-content a:hover {
  text-decoration: underline;
}

.page-faq-promotions__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-faq-promotions__content-wrapper--center {
  flex-direction: column;
  text-align: center;
}

.page-faq-promotions__app-info {
  flex: 1;
}

.page-faq-promotions__app-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-faq-promotions__app-image-wrapper {
  flex: 1;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-faq-promotions__app-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-faq-promotions__cta-button--download {
  background-color: #FFD700;
  color: #2C3E50;
  border-color: #FFD700;
}

.page-faq-promotions__cta-button--download:hover {
  background-color: #2C3E50;
  color: #FFD700;
  border-color: #FFD700;
}

.page-faq-promotions__cta-button--contact {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-faq-promotions__cta-button--contact:hover {
  background-color: #FFD700;
  color: #2C3E50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq-promotions__hero {
    padding: 60px 20px;
  }

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

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

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

  .page-faq-promotions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq-promotions__accordion-content {
    padding: 0 20px;
  }

  .page-faq-promotions__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-faq-promotions__app-image-wrapper {
    max-width: 300px;
  }
}

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

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

  .page-faq-promotions__section {
    padding: 40px 15px;
  }

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

  .page-faq-promotions__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq-promotions__accordion-content p {
    font-size: 0.9em;
  }
}