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

.page-promotions__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #e0f2f7, #ffffff);
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__hero-title {
  font-size: 48px;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: #1e87bb;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(38, 169, 224, 0.6);
}

.page-promotions__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  margin-top: 15px;
}

.page-promotions__cta-button--large {
  padding: 20px 50px;
  font-size: 22px;
  margin-top: 30px;
}

.page-promotions__cta-button--final {
  background: #EA7C07;
  box-shadow: 0 6px 15px rgba(234, 124, 7, 0.4);
}

.page-promotions__cta-button--final:hover {
  background: #d46f06;
  box-shadow: 0 8px 20px rgba(234, 124, 7, 0.6);
}

/* Types of Promotions Section */
.page-promotions__types-of-promotions {
  background-color: #f9f9f9;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-promotions__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-promotions__card-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #ffffff;
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__list-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  font-size: 17px;
  color: #333333;
  text-align: justify;
}

.page-promotions__list-item strong {
  color: #26A9E0;
  font-size: 18px;
}

.page-promotions__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.3);
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  background-color: #f0f8ff;
}

.page-promotions__bullet-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 20px;
}

.page-promotions__bullet-list .page-promotions__list-item {
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
}

.page-promotions__bullet-list .page-promotions__list-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #26A9E0;
  border-radius: 50%;
  box-shadow: none;
}

.page-promotions__bullet-list .page-promotions__list-item strong {
  font-size: 16px;
}

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: #ffffff;
}

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

.page-promotions__feature-item {
  text-align: center;
  padding: 25px;
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #26A9E0;
  padding: 10px;
}

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

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

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #f9f9f9;
}

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

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f0f8ff;
  color: #555555;
  font-size: 16px;
}

.page-promotions__faq-answer p {
  margin: 0;
  padding-bottom: 5px; /* Adjust as needed */
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(180deg);
  color: #EA7C07;
}

/* Conclusion Section */
.page-promotions__conclusion {
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.page-promotions__conclusion .page-promotions__section-title::after {
  background-color: #ffffff;
}

.page-promotions__conclusion .page-promotions__text-block {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .page-promotions__hero-title {
    font-size: 42px;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

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

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

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

  .page-promotions__hero-title {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 17px;
  }

  .page-promotions__cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

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

  .page-promotions__text-block {
    font-size: 16px;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__card {
    padding: 25px;
  }

  .page-promotions__card-image {
    height: 220px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-promotions__card-title {
    font-size: 22px;
  }

  .page-promotions__card-description {
    font-size: 15px;
  }

  .page-promotions__list-item {
    font-size: 16px;
    padding-left: 45px;
  }

  .page-promotions__list-item::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .page-promotions__bullet-list .page-promotions__list-item {
    font-size: 15px;
  }

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

  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-promotions__feature-title {
    font-size: 20px;
  }

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

  .page-promotions__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }

  /* Mobile button responsiveness */
  .page-promotions__cta-button,
  .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 {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 28px;
  }

  .page-promotions__section-title {
    font-size: 24px;
  }

  .page-promotions__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-description {
    font-size: 14px;
  }

  .page-promotions__feature-title {
    font-size: 18px;
  }

  .page-promotions__feature-description {
    font-size: 14px;
  }

  .page-promotions__faq-question h3 {
    font-size: 15px;
  }

  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 15px !important;
  }
}