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

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

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

.page-promotions h1, .page-promotions h2, .page-promotions h3 {
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.page-promotions h1 {
  font-size: clamp(2em, 3.5vw, 2.8em);
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000000;
}

.page-promotions h2 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  line-height: 1.3;
  margin-bottom: 30px;
}

.page-promotions h3 {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  line-height: 1.4;
  margin-bottom: 15px;
  color: #333333;
}

.page-promotions p {
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions__center-cta {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__cta-button, .page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover, .page-promotions__btn-primary:hover {
  background: #EA7C07; /* Login orange for hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__read-more {
  display: inline-block;
  margin-top: 15px;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions__read-more:hover {
  color: #EA7C07;
}

/* 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: 10px; /* Small top padding, body handles header offset */
  background-color: #f0f8ff; /* Light background for hero section */
}

.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 8px 20px rgba(0,0,0,0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__hero-content h1 {
  color: #000000;
}

.page-promotions__hero-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #333333;
}

/* Intro Section */
.page-promotions__intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

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

.page-promotions__promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  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__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__promo-card h3 {
  color: #26A9E0;
  margin-bottom: 10px;
  text-align: center;
}

.page-promotions__promo-card p {
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__promo-card .page-promotions__btn-primary {
  margin-top: 20px;
  width: auto;
  padding: 12px 25px;
  font-size: 16px;
}

/* Guide Section */
.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions__guide-list li {
  background: #f0f8ff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-promotions__guide-list li strong {
  color: #26A9E0;
}

.page-promotions__guide-image {
  display: block;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Terms Section */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions__terms-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-promotions__terms-list li::before {
  content: '•';
  color: #EA7C07;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -5px;
}

.page-promotions__terms-list li strong {
  color: #ffffff;
}

/* Safety & Support Section */
.page-promotions__safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__feature-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
}

.page-promotions__feature-item h3 {
  color: #26A9E0;
  margin-top: 0;
}

.page-promotions__feature-item p {
  color: #555555;
  font-size: 0.95em;
  text-align: justify;
}

.page-promotions__safety-image {
  display: block;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3d8ab5; /* Darker border for dark section */
  overflow: hidden;
  background: #3d8ab5; /* Slightly darker background for FAQ item */
}

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: #2087c2; /* Darker hover for dark section */
}

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

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  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: #2087c2; /* Darker background for answer */
  border-radius: 0 0 8px 8px;
  color: #f0f0f0;
}

.page-promotions__faq-image {
  display: block;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__news-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__news-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  text-align: left;
  color: #333333;
  flex-grow: 1;
}

.page-promotions__news-card h3 a {
  color: #333333;
  text-decoration: none;
}

.page-promotions__news-card h3 a:hover {
  color: #26A9E0;
}

.page-promotions__news-card p {
  font-size: 0.9em;
  color: #777777;
  margin-bottom: 10px;
  text-align: left;
}

.page-promotions__news-card .page-promotions__read-more {
  align-self: flex-start;
}

/* Background colors for sections */
.page-promotions__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-promotions__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__dark-section h1, .page-promotions__dark-section h2, .page-promotions__dark-section h3 {
  color: #ffffff;
}

/* All images responsive base */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-promotions__section-padding {
    padding: 40px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions h1 {
    font-size: 2em;
  }

  .page-promotions h2 {
    font-size: 1.8em;
  }

  .page-promotions h3 {
    font-size: 1.3em;
  }

  .page-promotions p {
    font-size: 0.95em;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions__hero-image img {
    border-radius: 8px;
  }

  .page-promotions__hero-content p {
    font-size: 1em;
  }

  .page-promotions__cta-button, .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-promotions__promo-card, .page-promotions__feature-item, .page-promotions__news-card {
    padding: 20px;
  }

  .page-promotions__promo-card img, .page-promotions__news-card img, .page-promotions__guide-image, .page-promotions__safety-image, .page-promotions__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min- /* Adjusted min-height for mobile cards */
  }

  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;
  }

  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  
  .page-promotions__promo-card p, .page-promotions__feature-item p, .page-promotions__news-card p {
    text-align: left;
  }

  .page-promotions__guide-list li, .page-promotions__terms-list li {
    font-size: 1em;
  }
}