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

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section--light {
  background-color: #ffffff;
}

.page-promotions__section--dark {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__text-block--light {
  color: #ffffff;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #f8f8f8;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures image covers the area */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap with image slightly for visual appeal */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 48px);
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.page-promotions__hero-description {
  font-size: 19px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* 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: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-promotions__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1e87b5;
}

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-promotions__btn-large {
  padding: 18px 35px;
  font-size: 20px;
}

/* Promo Grid */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__promo-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-promotions__promo-card-title {
  font-size: 22px;
  color: #26A9E0;
  margin: 0 20px 10px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions__promo-card-description {
  font-size: 16px;
  color: #555555;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-primary {
  margin: 0 20px;
  width: calc(100% - 40px);
}

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

.page-promotions__step-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__step-icon {
  font-size: 36px;
  font-weight: bold;
  color: #26A9E0;
  background: #e0f2f7;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.page-promotions__step-title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-promotions__step-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__step-card .page-promotions__btn-secondary {
  width: 100%;
}

/* Terms List */
.page-promotions__terms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__term-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__term-title {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__term-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Features Grid */
.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-promotions__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__feature-title {
  font-size: 20px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-promotions__feature-description {
  font-size: 16px;
  color: #555555;
  flex-grow: 1;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

/* Final CTA Section */
.page-promotions__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #26A9E0, #1e87b5); /* Gradient with brand color */
  color: #ffffff;
}

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

.page-promotions__cta-final-section .page-promotions__text-block {
  color: #f0f0f0;
}

.page-promotions__cta-final-section .page-promotions__cta-buttons {
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(30px, 4.5vw, 42px);
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    font-size: 17px;
    padding: 13px 25px;
  }
  .page-promotions__promo-card-title {
    font-size: 20px;
  }
  .page-promotions__step-title, .page-promotions__term-title, .page-promotions__feature-title {
    font-size: 19px;
  }
  .page-promotions__promo-card-description, .page-promotions__step-description, .page-promotions__term-description, .page-promotions__feature-description {
    font-size: 15px;
  }
}

@media (max-width: 849px) {
  .page-promotions__hero-image-wrapper {
    max-height: 450px;
  }
  .page-promotions__hero-image {
    object-fit: contain !important; /* Prevents cropping on smaller screens */
    aspect-ratio: unset;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 6vw, 30px);
  }
  .page-promotions__text-block {
    font-size: 16px;
  }

  /* HERO Section Mobile */
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding, relying on body padding-top */
  }
  .page-promotions__hero-image-wrapper {
    max-height: 300px !important;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
  .page-promotions__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
    width: calc(100% - 30px); /* Account for padding */
    box-sizing: border-box;
  }
  .page-promotions__main-title {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.2;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-promotions__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* Buttons Mobile */
  .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: 12px 15px !important;
    font-size: 16px !important;
  }
  .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__promo-card .page-promotions__btn-primary {
    width: calc(100% - 40px) !important;
  }
  .page-promotions__step-card .page-promotions__btn-secondary {
    width: 100% !important;
  }

  /* Images Mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
  .page-promotions__feature-image {
    height: 150px;
  }

  /* Promo Grid Mobile */
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Steps Grid Mobile */
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Terms List Mobile */
  .page-promotions__terms-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Features Grid Mobile */
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQ Mobile */
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  /* Final CTA Mobile */
  .page-promotions__cta-final-section {
    padding: 50px 0;
  }
  .page-promotions__cta-final-section .page-promotions__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }
}