.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body handles #000000 */
}

/* Base section styles */
.page-promotions__hero-section,
.page-promotions__video-section,
.page-promotions__category-overview,
.page-promotions__all-promotions,
.page-promotions__how-to-claim,
.page-promotions__terms,
.page-promotions__faq-section,
.page-promotions__cta-section {
  padding: 40px 20px;
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow */
}

/* Dark background sections */
.page-promotions__dark-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on #000000 body */
  color: #ffffff;
}

/* Light background sections */
.page-promotions__light-bg {
  background-color: #f0f0f0; /* Light grey for contrast */
  color: #333333;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3em); /* H1 font size constraint */
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Video Section */
.page-promotions__video-section {
  padding-top: 10px; /* Small top padding for video section */
  padding-bottom: 40px;
  text-align: center;
}

.page-promotions__video-title {
  color: #26A9E0;
  margin-bottom: 20px;
  font-size: clamp(1.8em, 3.5vw, 2.5em);
}

.page-promotions__video-container {
  width: 100%; /* Ensure desktop width is 100% with max-width */
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}

.page-promotions__video-link-wrapper {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  cursor: pointer;
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-promotions__video-description {
  margin-top: 20px;
  color: #f0f0f0;
}

/* Section Titles and Descriptions */
.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions__section-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Card Grid Layout */
.page-promotions__category-grid,
.page-promotions__promotion-list,
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__card {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card background based on parent section */
.page-promotions__dark-bg .page-promotions__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-promotions__light-bg .page-promotions__card {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-promotions__card-content {
  padding: 0 20px;
  flex-grow: 1; /* Allow content to grow */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #26A9E0; /* Brand color for titles */
}

.page-promotions__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promotion-date {
  font-size: 0.85em;
  color: #ccc;
  margin-bottom: 15px;
}

/* Buttons */
.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-promotions__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background-color: #1e87b9;
  border-color: #1e87b9;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Terms and Conditions List */
.page-promotions__terms-list {
  max-width: 800px;
  margin: 0 auto 30px;
  list-style: none;
  padding-left: 0;
}

.page-promotions__terms-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__terms-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-weight: bold;
}

/* FAQ Section */
.page-promotions__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #26A9E0; /* Brand color for question */
  color: #ffffff; /* White text for contrast */
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions__faq-item.active .page-promotions__faq-question {
  background-color: #1e87b9;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-promotions__faq-answer {
  padding: 15px 20px;
  background-color: #f9f9f9; /* Light background for answer */
  color: #333333;
  font-size: 0.95em;
  border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section,
.page-promotions__video-section,
.page-promotions__category-overview,
.page-promotions__all-promotions,
.page-promotions__how-to-claim,
.page-promotions__terms,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 30px 15px !important;
  }

  /* Images responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__hero-image-wrapper,
.page-promotions__video-container,
.page-promotions__category-grid,
.page-promotions__promotion-list,
.page-promotions__steps-grid,
.page-promotions__card,
.page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  /* Video section specific top padding */
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  /* Buttons responsive */
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-promotions__btn-primary,
.page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

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

  .page-promotions__card-image {
    height: 180px; /* Adjust card image height for mobile */
  }

  .page-promotions__video-link-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
  }
}