.page-promotions {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
}

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

.page-promotions__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust for header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  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.8;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promotions__btn-primary {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

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

.page-promotions__video-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  cursor: pointer;
}

.page-promotions__video-cta {
  margin-top: 20px;
}

.page-promotions__types-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
  color: #333333;
}

.page-promotions__types-section .page-promotions__section-title,
.page-promotions__types-section .page-promotions__section-description {
  color: #333333;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  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;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  padding: 20px 25px 10px;
  color: #26A9E0;
}

.page-promotions__card-text {
  padding: 0 25px 25px;
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions__numbered-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__list-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-item:before {
  content: counter(item);
  counter-increment: item;
  background: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  float: left;
  margin-right: 20px;
  margin-top: 5px;
}

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

.page-promotions__list-text {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-left: 60px; /* Offset for counter */
}

.page-promotions__list-text a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-promotions__terms-section {
  padding: 80px 0;
  background: #ffffff;
  color: #333333;
  text-align: center;
}

.page-promotions__terms-section .page-promotions__section-title,
.page-promotions__terms-section .page-promotions__section-description {
  color: #333333;
}

.page-promotions__bullet-list {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 50px auto;
  padding-left: 40px;
  color: #555555;
  font-size: 1em;
  line-height: 1.8;
}

.page-promotions__bullet-list .page-promotions__list-item {
  background: none;
  padding: 0;
  box-shadow: none;
  margin-bottom: 10px;
  color: #555555;
}

.page-promotions__additional-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-promotions__additional-info a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

.page-promotions__why-choose-us-section {
  padding: 80px 0;
  text-align: center;
}

.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: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  height: 100%;
}

.page-promotions__feature-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-promotions__faq-section {
  padding: 80px 0;
  background: #ffffff;
  color: #333333;
  text-align: center;
}

.page-promotions__faq-section .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-description {
  color: #333333;
}

.page-promotions__faq-section .page-promotions__section-description a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__faq-section .page-promotions__section-description a:hover {
  text-decoration: underline;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: bold;
  color: #333333;
  transition: background 0.3s ease;
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.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;
  color: #555555;
  line-height: 1.6;
}

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

.page-promotions__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-promotions__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Color contrast classes */
.page-promotions__dark-bg {
  background: #0a0a0a;
  color: #ffffff;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 80px 0 40px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0;
  }

  .page-promotions__video-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__grid-cards {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__list-item {
    padding: 20px;
  }
  .page-promotions__list-item:before {
    width: 35px;
    height: 35px;
    font-size: 1em;
    margin-right: 15px;
  }
  .page-promotions__list-title {
    font-size: 1.4em;
  }
  .page-promotions__list-text {
    margin-left: 50px;
  }
  .page-promotions__feature-title {
    font-size: 1.4em;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-title {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-section,
  .page-promotions__video-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-us-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section,
  .page-promotions__container,
  .page-promotions__video-wrapper,
  .page-promotions__grid-cards,
  .page-promotions__numbered-list,
  .page-promotions__bullet-list,
  .page-promotions__feature-grid,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

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

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__list-title {
    font-size: 1.2em;
  }
  .page-promotions__faq-title {
    font-size: 1em;
  }
}