.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 should be transparent to show body background */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image first, then content */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  background-color: #1a1a1a; /* Ensure dark background for the section */
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 40px; /* Space between image and text content */
}

.page-promotions__hero-content {
  position: relative; /* Not absolute, to ensure it's below the image */
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-promotions__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  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: #1e87b7;
  border-color: #1e87b7;
}

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

.page-promotions__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-promotions__btn-large {
  min-width: 220px;
  padding: 18px 35px;
}

/* Overview Section */
.page-promotions__overview-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background for this section */
}

.page-promotions__overview-section .page-promotions__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-promotions__overview-section .page-promotions__text-block {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Promotions Grid */
.page-promotions__featured-promotions {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly darker background for contrast */
}

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

.page-promotions__promotion-card {
  background-color: #2a2a2a; /* Dark card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistent card images */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0; /* Brand color for card titles */
  margin: 0 20px 15px 20px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #cccccc; /* Lighter text for description */
  margin: 0 20px 25px 20px;
  flex-grow: 1; /* Allows description to take available space */
}

.page-promotions__promotion-card .page-promotions__btn-primary {
  margin: 0 20px;
  width: calc(100% - 40px); /* Adjust button width inside card */
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background */
}

.page-promotions__how-to-claim .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__how-to-claim .page-promotions__text-block {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__step-item {
  background-color: #2a2a2a; /* Dark background for step items */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-item p {
  color: #cccccc;
}

.page-promotions__step-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__step-item a:hover {
  color: #1e87b7;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly darker background */
}

.page-promotions__terms-conditions .page-promotions__section-title {
  color: #26A9E0;
}

.page-promotions__terms-conditions .page-promotions__text-block {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  background-color: #2a2a2a; /* Dark background for list items */
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #f0f0f0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-item strong {
  color: #26A9E0;
}

.page-promotions__terms-conditions a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__terms-conditions a:hover {
  color: #1e87b7;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Dark background */
}

.page-promotions__faq-section .page-promotions__section-title {
  color: #ffffff;
}

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

.page-promotions__faq-item {
  background-color: #2a2a2a; /* Dark background for FAQ items */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0; /* Brand color for questions */
  background-color: #3a3a3a; /* Slightly lighter dark background for summary */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

/* For details tag, hide default marker */
.page-promotions__faq-item summary {
  list-style: none;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #cccccc;
  background-color: #2a2a2a; /* Same as item background */
}

/* Final CTA Section */
.page-promotions__final-cta {
  padding: 80px 0;
  text-align: center;
  background-color: #0d0d0d; /* Dark background */
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__final-cta .page-promotions__text-block {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }
  .page-promotions__hero-image {
    height: 300px;
    margin-bottom: 30px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions__hero-cta,
  .page-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    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__btn-large {
    min-width: unset;
  }

  .page-promotions__container,
  .page-promotions__promotion-card,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions__text-block {
    font-size: 0.95em;
  }

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

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

  .page-promotions__step-item {
    padding: 20px;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }

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

/* Ensure no filter is used on images */
.page-promotions img {
  filter: none;
}