.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-promotions__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-promotions__hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-promotions__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-promotions__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD36B;
  border: 2px solid #3A2A12;
}

.page-promotions__btn--secondary:hover {
  background-color: #3A2A12;
  color: #FFF6D6;
  transform: translateY(-2px);
}

.page-promotions__list-section,
.page-promotions__why-choose-section,
.page-promotions__cta-section,
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__list-title,
.page-promotions__why-choose-title,
.page-promotions__cta-title,
.page-promotions__faq-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E;
}

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

.page-promotions__card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-title a {
  color: #FFD36B;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  color: #F2C14E;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  align-self: flex-start;
}

.page-promotions__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__benefit-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__benefit-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px; /* Ensure images are not tiny icons */
}

.page-promotions__benefit-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B;
}

.page-promotions__benefit-description {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-promotions__cta-section {
  text-align: center;
  background-color: #111111;
  border-radius: 12px;
  padding: 60px 30px;
  margin-bottom: 60px;
  border: 1px solid #3A2A12;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 25px;
  cursor: pointer;
  color: #FFD36B;
  position: relative;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #1a1a1a;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFF6D6;
  display: none;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  display: block;
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-promotions__hero-section {
    padding: 10px 15px 30px;
  }

  .page-promotions__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-promotions__hero-image {
    aspect-ratio: 16/9; /* Adjust for mobile hero */
  }

  .page-promotions__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions__list-section,
  .page-promotions__why-choose-section,
  .page-promotions__cta-section,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }

  .page-promotions__list-title,
  .page-promotions__why-choose-title,
  .page-promotions__cta-title,
  .page-promotions__faq-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-content {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__benefit-item {
    padding: 25px;
  }

  .page-promotions__benefit-icon {
    width: 120px;
    height: 120px;
  }

  .page-promotions__benefit-heading {
    font-size: 1.3rem;
  }

  .page-promotions__cta-section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .page-promotions__cta-description {
    font-size: 1rem;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-promotions__faq-question::after {
    right: 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 18px;
  }
}

@media (max-width: 549px) {
  .page-promotions__hero-image {
    aspect-ratio: 4/3;
  }

  .page-promotions__card-image {
    height: 150px;
  }

  .page-promotions__benefit-icon {
    width: 100px;
    height: 100px;
  }

  .page-promotions__card-title {
    font-size: 1.1rem;
  }

  .page-promotions__btn--primary, .page-promotions__btn--secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Ensure all content images are responsive and do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all content images are responsive and do not overflow */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}