.page-promotions {
  background-color: #B71C1C;
  color: #FFF5E1;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow-x: hidden;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border color */
}

.page-promotions__main-title {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF5E1;
  letter-spacing: 0.5px;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFF5E1;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: #F4D34D; /* Gold */
  margin-bottom: 40px;
  padding: 0 15px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F2B544;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__promotions-list {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.page-promotions__promotion-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #7A0E0E; /* Deep Red */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

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

.page-promotions__card-title a {
  color: #F4D34D; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #FFCC66; /* Glow */
}

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF5E1;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.page-promotions__faq-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

.page-promotions__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #7A0E0E;
}

.page-promotions__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  position: relative;
  user-select: none;
}

.page-promotions__faq-question::marker, .page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-promotions__faq-item[open] .page-promotions__faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-promotions__cta-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions__cta-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.page-promotions__cta-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border color */
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFF5E1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__cta-image {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__main-title {
    font-size: clamp(1.2rem, 6vw, 2rem);
  }

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

  .page-promotions__cta-button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

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

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

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

@media (max-width: 549px) {
  .page-promotions__hero-content,
  .page-promotions__cta-content {
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.1rem, 7vw, 1.8rem);
  }

  .page-promotions__hero-description,
  .page-promotions__cta-description {
    font-size: 0.95rem;
  }

  .page-promotions__cta-button {
    padding: 8px 20px;
    font-size: 0.95rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

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

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

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}