.page-faq-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

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

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

.page-faq-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-faq-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-faq-promotions__hero-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-faq-promotions__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-faq-promotions__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq-promotions__promotion-types {
  background-color: #fff;
}

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

.page-faq-promotions__card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-faq-promotions__card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-faq-promotions__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq-promotions__card-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-faq-promotions__card-link {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq-promotions__card-link:hover {
  background-color: #0056b3;
}

.page-faq-promotions__faq-list {
  background-color: #f0f4f7;
}

.page-faq-promotions__accordion {
  margin-top: 30px;
}

.page-faq-promotions__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq-promotions__accordion-header {
  padding: 20px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-promotions__accordion-header:hover {
  background-color: #0056b3;
}

.page-faq-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-faq-promotions__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fff;
  color: #333;
}

.page-faq-promotions__accordion-content p {
  padding: 15px 0;
  margin: 0;
  font-size: 1.05em;
  color: #444;
}

.page-faq-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #e9ecef;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-faq-promotions__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #333;
}

.page-faq-promotions__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq-promotions__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-faq-promotions__cta-button--secondary {
  background-color: #007bff;
  color: #fff;
}

.page-faq-promotions__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-faq-promotions__sticky-promo {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-faq-promotions__sticky-promo-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-faq-promotions__sticky-promo-text {
  margin: 0;
  font-size: 1.1em;
  font-weight: normal;
}

.page-faq-promotions__sticky-promo-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq-promotions__sticky-promo-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

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

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

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

  .page-faq-promotions__grid {
    grid-template-columns: 1fr;
  }

  .page-faq-promotions__cta-button {
    margin: 10px 0;
    width: 100%;
  }
  .page-faq-promotions__sticky-promo-content {
    flex-direction: column;
    gap: 10px;
  }
  .page-faq-promotions__sticky-promo-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-faq-promotions__hero {
    padding: 60px 0;
  }

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

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

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

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

  .page-faq-promotions__card-title {
    font-size: 1.3em;
  }

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

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

  .page-faq-promotions__cta-bottom p {
    font-size: 1em;
  }
}