.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content background is transparent, letting body background show */
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-promotions__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-promotions__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  background-size: cover;
  cursor: pointer; /* Indicate clickable video */
}

.page-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 1;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-cta {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: #8B0000; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #FFD700; /* Gold border */
}

.page-promotions__hero-cta:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000; /* Red text on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-promotions__btn-primary {
  background-color: #8B0000; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: #FFD700; /* Auxiliary brand color */
  color: #8B0000; /* Main brand color text for contrast */
  border: 2px solid #8B0000;
}

.page-promotions__btn-secondary:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-2px);
}

/* Promotions Grid */
.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promotion-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent light background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

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

/* Steps List */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__step-item {
  background: rgba(255, 255, 255, 0.05); /* Lighter background for steps */
  border-left: 5px solid #8B0000;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promotions__step-item strong {
  color: #FFD700;
}

/* Terms & Benefits Lists */
.page-promotions__terms-list,
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions__terms-item,
.page-promotions__benefits-item {
  background: rgba(139, 0, 0, 0.1); /* Darker background for terms/benefits */
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-promotions__terms-item strong,
.page-promotions__benefits-item strong {
  color: #FFD700;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Card-like background for FAQ items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Main brand color for question header */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #6a0000;
}

.page-promotions__faq-title {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
  color: #f0f0f0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  box-sizing: border-box;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px 25px !important;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* CTA Section */
.page-promotions__cta-section {
  background-color: #8B0000; /* Main brand color for CTA section */
  padding: 80px 20px;
}

.page-promotions__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-promotions__cta-section .page-promotions__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions__cta-section .page-promotions__text-block {
  max-width: 800px;
  color: #ffffff;
  margin-bottom: 30px;
}

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

/* Section Backgrounds */
.page-promotions__dark-bg {
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark background */
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    height: auto;
    min-height: 600px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

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

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

  .page-promotions__hero-cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-promotions__text-block,
  .page-promotions__step-item,
  .page-promotions__terms-item,
  .page-promotions__benefits-item,
  .page-promotions__card-description,
  .page-promotions__faq-answer p {
    font-size: 1em;
  }

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

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

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

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions__cta-section {
    padding: 60px 15px;
  }

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

  /* Mobile image, video, button responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions video,
  .page-promotions__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 0 10px 0; /* Adjust margin for vertical stacking */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__hero-cta {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
  }
}