.page-promotions {
  color: #F3F8FF;
  font-family: Arial, sans-serif;
  background-color: #08162B; /* Deep Navy background for the page content */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile-first */
  align-items: center;
  text-align: center;
  padding: 10px 0 40px;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Blue Gold gradient */
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px; /* Space between image and content */
}

.page-promotions__hero-content {
  max-width: 960px;
  padding: 0 15px;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for main title */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #AFC4E8;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  min-width: 180px;
  text-align: center;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__overview-section,
.page-promotions__featured-promo-section,
.page-promotions__app-promo-section,
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F3F8FF;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F2C14E, #1D5FD1);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions__section-title--gold {
  color: #F2C14E;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  color: #AFC4E8;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-promotions__promo-card {
  background-color: #10233F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #1B3357;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F3F8FF;
  margin: 20px 15px 10px;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #AFC4E8;
  line-height: 1.6;
  padding: 0 15px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 20px auto;
  padding: 12px 20px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-promotions__featured-promo-card {
  background-color: #10233F;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid #244D84;
}

.page-promotions__featured-promo-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions__featured-promo-content {
  padding: 30px;
}

.page-promotions__featured-promo-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-promotions__featured-promo-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #AFC4E8;
  margin-bottom: 25px;
}

.page-promotions__promo-details-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__promo-detail-item {
  font-size: 1rem;
  color: #F3F8FF;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__promo-detail-item::before {
  content: '✔';
  color: #4FA8FF; /* Glow color for checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions__cta-button--small {
  font-size: 1rem;
  padding: 12px 25px;
  min-width: unset;
}

.page-promotions__app-promo-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile */
  align-items: center;
  text-align: center;
  background-color: #08162B; /* Deep Navy */
  border-radius: 12px;
  padding: 40px 20px;
  gap: 30px;
  margin-top: 60px;
  border: 1px solid #1B3357;
}

.page-promotions__app-promo-content {
  max-width: 600px;
}

.page-promotions__app-promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__faq-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #4FA8FF;
  transition: transform 0.3s ease;
}

/* For an accordion-like effect, could add a class like .is-open */
.page-promotions__faq-question.is-open::after { transform: rotate(45deg); }

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #AFC4E8;
  line-height: 1.6;
  display: none; /* Initially hidden, toggled with JS */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2; /* Make it a subtle background */
  }

  .page-promotions__hero-content {
    position: relative;
    z-index: 1;
  }

  .page-promotions__promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__featured-promo-card {
    flex-direction: row; /* Desktop: image on left, content on right */
    text-align: left;
  }

  .page-promotions__featured-promo-image {
    width: 50%;
    height: auto;
  }

  .page-promotions__featured-promo-content {
    width: 50%;
    padding: 40px;
  }

  .page-promotions__promo-detail-item::before {
    left: 10px;
  }

  .page-promotions__app-promo-section {
    flex-direction: row; /* Desktop: content left, image right */
    text-align: left;
    justify-content: center;
  }

  .page-promotions__app-promo-content {
    margin-right: 50px;
  }

  .page-promotions__app-promo-image {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .page-promotions__promo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 849px) {
  .page-promotions__hero-image {
    /* Ensure image is not absolutely positioned and acts as a block element above content */
    position: static;
    opacity: 1;
    margin-bottom: 20px; /* Space between image and content */
  }

  .page-promotions__hero-content {
    padding: 0 15px;
  }

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

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

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
  }

  .page-promotions__featured-promo-content,
  .page-promotions__app-promo-content {
    padding: 20px;
  }

  .page-promotions__featured-promo-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .page-promotions__promo-detail-item {
    font-size: 0.9rem;
  }

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

  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-promotions__overview-section,
  .page-promotions__featured-promo-section,
  .page-promotions__app-promo-section,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }

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

  .page-promotions__promo-card {
    margin-bottom: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__app-promo-section {
    padding: 30px 15px;
  }

  .page-promotions__app-promo-image {
    max-width: 250px;
  }

  .page-promotions__faq-question {
    font-size: 1.1rem;
  }

  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }

  /* Ensure content area images don't overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images don't overflow on mobile */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}