.page-promotions {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions__light-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

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

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 100px; /* Adjust to ensure content is below header */
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-promotions__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #F2C14E;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions__introduction-section p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #A7D9B8;
  text-align: justify;
}

.page-promotions__introduction-section p strong {
  color: #F2FFF6;
}

.page-promotions__types-section {
  padding: 80px 20px;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__promo-card .page-promotions__card-title {
  font-size: 1.6rem;
  color: #F2C14E;
  margin: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-promotions__promo-card .page-promotions__card-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__btn-small {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.page-promotions__btn-small:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__guide-section {
  padding: 80px 20px;
}

.page-promotions__guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-promotions__guide-step {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #2E7A4E;
}

.page-promotions__guide-title {
  font-size: 1.8rem;
  color: #2AD16F;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__guide-step p,
.page-promotions__guide-step ol,
.page-promotions__guide-step ul {
  color: #A7D9B8;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 20px;
}

.page-promotions__guide-step ol li,
.page-promotions__guide-step ul li {
  margin-bottom: 8px;
}

.page-promotions__guide-step strong {
  color: #F2FFF6;
}

.page-promotions__why-choose-section {
  padding: 80px 20px;
}

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

.page-promotions__feature-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #2E7A4E;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-item p {
  color: #A7D9B8;
  font-size: 0.95rem;
}

.page-promotions__faq-section {
  padding: 80px 20px;
}

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

.page-promotions__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: #11A84E;
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  background-color: #11271B;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
  text-align: justify;
}

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

.page-promotions__cta-bottom-section .page-promotions__section-title {
  margin-bottom: 20px;
}

.page-promotions__cta-bottom-section .page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Image & Video & Button Responsive Styles */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions__hero-image {
  width: 100%; /* Ensure hero image takes full width */
  height: 100%;
}

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

/* Desktop specific width for video container */
.page-promotions__video-container {
  max-width: 1200px; /* Example max-width for desktop */
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-promotions__guide-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-promotions__hero-content {
    margin-top: 80px;
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-promotions__content-area {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card .page-promotions__card-title {
    font-size: 1.4rem;
  }

  .page-promotions__guide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-promotions__guide-title {
    font-size: 1.6rem;
  }

  .page-promotions__features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-title {
    font-size: 1.3rem;
  }

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

  .page-promotions__faq-toggle {
    font-size: 1.3rem;
  }

  .page-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  .page-promotions__cta-bottom-section {
    padding: 60px 15px;
  }

  /* Force responsive for all images */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure images scale down */
    height: auto !important;
    display: block !important;
  }

  /* Force responsive for all video elements and their containers */
  .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;
  }

  /* Ensure all containers with images/videos/buttons handle overflow */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .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;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-promotions__video-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
  }

  .page-promotions__promo-card .page-promotions__card-text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__btn-small {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
}