.page-promotions {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Ensure consistent dark background */
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjust for fixed header */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #007bff; /* Fallback for image */
  padding-top: var(--header-offset, 120px);
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-promotions__section-title {
  font-size: 2.5em;
  color: #ffc107;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Button Styles */
.page-promotions__btn-primary {
  display: inline-block;
  background-color: #ffc107;
  color: #121212;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ffc107;
  padding: 10px 20px;
  border: 2px solid #ffc107;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  background-color: #ffc107;
  color: #121212;
}

/* Light Background Sections */
.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-promotions__light-bg .page-promotions__section-title,
.page-promotions__light-bg .page-promotions__section-description,
.page-promotions__light-bg .page-promotions__card-title,
.page-promotions__light-bg .page-promotions__card-text,
.page-promotions__light-bg .page-promotions__faq-heading,
.page-promotions__light-bg .page-promotions__faq-answer p {
  color: #333333;
}

.page-promotions__light-bg a {
  color: #007bff;
}

.page-promotions__light-bg .page-promotions__btn-secondary {
  color: #007bff;
  border-color: #007bff;
}

.page-promotions__light-bg .page-promotions__btn-secondary:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Dark Background Sections */
.page-promotions__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions__dark-bg .page-promotions__section-title {
  color: #ffc107;
}

/* Current Promotions Section */
.page-promotions__current-promotions {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-promotions__card {
  background-color: #f8f9fa; /* Light background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
}

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

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

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

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

/* How To Claim Section */
.page-promotions__how-to-claim {
  padding-bottom: 80px;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__step-text a {
  color: #ffc107;
  text-decoration: underline;
}

.page-promotions__step-text a:hover {
  color: #e0a800;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__terms-list {
  list-style: disc;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 20px;
  font-size: 1.1em;
}

.page-promotions__terms-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Why Choose Section */
.page-promotions__why-choose {
  padding-bottom: 80px;
}

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

.page-promotions__benefit-item {
  background-color: rgba(0, 123, 255, 0.15); /* Semi-transparent primary color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5)); /* Subtle glow for icons */
}

.page-promotions__benefit-title {
  font-size: 1.6em;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-promotions__benefit-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions__benefit-text a {
  color: #ffc107;
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-heading {
  font-size: 1.2em;
  color: #333333;
  margin: 0;
}

.page-promotions__faq-toggle {
  font-size: 1.8em;
  color: #007bff;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #333333;
}

.page-promotions__faq-answer a {
  color: #007bff;
  text-decoration: underline;
}

/* CTA Section */
.page-promotions__cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #007bff; /* Fallback for image */
}

.page-promotions__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-promotions__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__card-grid,
  .page-promotions__steps-list,
  .page-promotions__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image,
  .page-promotions__hero-image,
  .page-promotions__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card,
  .page-promotions__step-item,
  .page-promotions__benefit-item,
  .page-promotions__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
  }
  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__step-title {
    font-size: 1.5em;
  }
  .page-promotions__benefit-title {
    font-size: 1.4em;
  }
  .page-promotions__faq-heading {
    font-size: 1.1em;
  }
}