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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #0F131A 100%);
  overflow: hidden;
  min-height: 600px;
  gap: 30px;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 10;
  position: relative;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  line-height: 1.2;
}

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

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-section,
.page-promotions__cta-bottom-section {
  padding: 80px 0;
  background-color: #121212; /* Light-like background for contrast with dark body */
  color: #ffffff;
}

.page-promotions__detailed-promo-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

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

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

.page-promotions__promo-card {
  background-color: #1A202C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__card-text {
  color: #f0f0f0;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__btn-small {
  padding: 10px 25px;
  font-size: 0.95em;
}

.page-promotions__promo-detail-item {
  background-color: #0F131A;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__promo-detail-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions__promo-detail-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-promotions__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__promo-features li {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  font-size: 1em;
}

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

.page-promotions__step-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promotions__step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

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

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

.page-promotions__center-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promotions__btn-large {
  padding: 18px 45px;
  font-size: 1.2em;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-promotions__terms-list li {
  background-color: #0F131A;
  color: #e0e0e0;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.05em;
}

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

.page-promotions__feature-item {
  background-color: #1A202C;
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

.page-promotions__feature-text {
  color: #e0e0e0;
  font-size: 1em;
}

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

.page-promotions__faq-item {
  background-color: #0F131A;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1A202C;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.2em;
}

.page-promotions__faq-toggle {
  font-size: 1.8em;
  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;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #0F131A;
  color: #e0e0e0;
}

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

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-promotions__center-text {
  text-align: center;
}

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

  .page-promotions__section-title {
    font-size: 2.2em;
  }

  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 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__overview-section,
  .page-promotions__detailed-promo-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__promo-card,
  .page-promotions__promo-detail-item,
  .page-promotions__step-item,
  .page-promotions__feature-item {
    padding: 25px;
  }

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

  .page-promotions__card-title,
  .page-promotions__promo-detail-title,
  .page-promotions__step-title,
  .page-promotions__feature-title {
    font-size: 1.5em;
  }

  .page-promotions__promo-detail-text,
  .page-promotions__promo-features li,
  .page-promotions__step-text,
  .page-promotions__terms-list li,
  .page-promotions__feature-text,
  .page-promotions__faq-question h3,
  .page-promotions__faq-answer p {
    font-size: 0.95em;
  }

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

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

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

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__promo-detail-item,
  .page-promotions__step-item,
  .page-promotions__feature-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure images within content area are at least 200px wide */
.page-promotions img:not(.page-promotions__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific card images to fit */
.page-promotions__promo-card .page-promotions__card-image,
.page-promotions__step-item .page-promotions__step-image {
  min-width: unset; /* Allow these to scale down if needed, but the container will handle min size */
  min-height: unset;
}

/* Ensure images in content area don't get too small from other rules */
.page-promotions__promo-card .page-promotions__card-image,
.page-promotions__step-item .page-promotions__step-image {
  width: 100%; /* Make sure they fill their container */
  max-width: 400px; /* Example max-width for cards/steps */
  height: auto;
  object-fit: cover;
}

/* Specific min-width for images in content sections to meet 200px requirement */
.page-promotions__promo-card img,
.page-promotions__step-item img {
  min-width: 200px;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* Adjust padding for sections to prevent double padding if body already has it */
.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-section,
.page-promotions__cta-bottom-section,
.page-promotions__detailed-promo-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Mobile-specific adjustments for padding */
@media (max-width: 768px) {
  .page-promotions__overview-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__why-choose-section,
  .page-promotions__cta-bottom-section,
  .page-promotions__detailed-promo-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}