.page-promotions {
  color: #ffffff;
  background-color: #121212; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section-title,
.page-promotions__hero-title,
.page-promotions__cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffc107; /* Accent color for titles */
}

.page-promotions__section-description,
.page-promotions__hero-description,
.page-promotions__cta-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promotions__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Default desktop padding, header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  min-height: 600px;
  background-color: #007bff; /* Main brand color for hero background */
  padding-top: var(--header-offset, 120px);
}

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

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

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffc107; /* Accent color for hero title */
}

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

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

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

.page-promotions__btn-primary {
  background-color: #ffc107;
  color: #121212;
  border: 2px solid #ffc107;
}

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

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

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

.page-promotions__overview-section,
.page-promotions__specific-promos-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-conditions-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
  padding: 80px 0;
}

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

.page-promotions__feature-item,
.page-promotions__advantage-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 123, 255, 0.1); /* Subtle background for features */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__feature-item .page-promotions__feature-icon,
.page-promotions__advantage-item .page-promotions__advantage-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__feature-title,
.page-promotions__advantage-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107;
}

.page-promotions__feature-text,
.page-promotions__advantage-text {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-promotions__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

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

.page-promotions__promo-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-promotions__promo-title a {
  color: #ffc107;
  text-decoration: none;
}

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

.page-promotions__promo-text {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-promotions__step-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007bff;
}

.page-promotions__step-text {
  font-size: 1rem;
  color: #555555;
}

.page-promotions__step-text a {
  color: #007bff;
  text-decoration: none;
}

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

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__term-item {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__term-item strong {
  color: #ffc107;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #007bff;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  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 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-promotions__cta-content {
  text-align: center;
}

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

/* Image and Video responsive rules */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-promotions__video-section,
.page-promotions__video-container,
.page-promotions__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

  .page-promotions__hero-section {
    padding: 80px 0 40px;
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-promotions__hero-cta {
    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__cta-buttons {
    flex-direction: column;
  }

  .page-promotions__section-title,
  .page-promotions__cta-title {
    font-size: 1.8rem;
  }

  .page-promotions__section-description,
  .page-promotions__cta-description {
    font-size: 0.9rem;
  }

  .page-promotions__features-grid,
  .page-promotions__promos-grid,
  .page-promotions__advantages-grid {
    grid-template-columns: 1fr;
  }

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

  .page-promotions__promo-title {
    font-size: 1.5rem;
  }

  .page-promotions__step-title {
    font-size: 1.4rem;
  }

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

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

  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}