.page-promo {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main color for titles */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}

.page-promo__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #E3B505; /* Accent color */
  color: #0A2463; /* Contrasting text for accent background */
  border: 2px solid #E3B505;
}

.page-promo__button--primary:hover {
  background-color: #f5cb42;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: #0A2463; /* Main color */
  color: #E3B505; /* Contrasting text for main background */
  border: 2px solid #0A2463;
}

.page-promo__button--secondary:hover {
  background-color: #1a3a7a;
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #E3B505;
  color: #0A2463;
  border: none;
}

.page-promo__button--small:hover {
  background-color: #f5cb42;
  transform: translateY(-1px);
}

.page-promo__link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__link:hover {
  text-decoration: underline;
  color: #E3B505;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Dark background for hero content */
  padding: 0;
}

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

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for aesthetic */
  opacity: 0.7;
}

.page-promo__hero-content {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #ffffff; /* Light text for dark hero background */
  padding: 20px;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  color: #E3B505; /* Accent color for main title */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-actions .page-promo__button {
  margin: 0 10px;
}

/* Current Promotions Section */
.page-promo__current-promos-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__promo-card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-promo__promo-card-title a:hover {
  color: #E3B505;
  text-decoration: underline;
}

.page-promo__promo-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__promo-card .page-promo__button--small {
  align-self: flex-start;
}

/* Exclusive Offers Section */
.page-promo__exclusive-offers-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-promo__list-item {
  background-color: #f0f5fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #0A2463;
  transition: background-color 0.3s ease;
}

.page-promo__list-item:hover {
  background-color: #e0eaf5;
}

.page-promo__list-item-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__list-item-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #0A2463; /* Main color */
  color: #E3B505; /* Accent color */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Terms & Conditions Section */
.page-promo__terms-conditions-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #555555;
}

.page-promo__terms-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promo__terms-conditions-section .page-promo__button--primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promo__accordion-header {
  background-color: #0A2463; /* Main color */
  color: #ffffff; /* Light text for dark background */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__accordion-header:hover {
  background-color: #1a3a7a;
}

.page-promo__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__accordion-content {
  padding: 20px 25px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  display: none;
}

.page-promo__accordion-content p {
  margin-bottom: 15px;
  color: #444444;
}

/* CTA Section */
.page-promo__cta-section {
  padding: 80px 0;
  background-color: #0A2463; /* Main color as background */
  color: #ffffff; /* Light text for dark background */
  text-align: center;
}

.page-promo__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promo__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-content {
  max-width: 700px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #E3B505; /* Accent color for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__promo-card-title {
    font-size: 1.3em;
  }

  .page-promo__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 15px;
  }

  .page-promo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-promo__hero-actions .page-promo__button {
    margin: 5px 0;
    width: 100%;
    max-width: 280px;
  }

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

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__section-subtitle {
    font-size: 1em;
  }

  .page-promo__promo-card-image {
    height: 200px;
  }

  .page-promo__cta-title {
    font-size: 1.8em;
  }

  .page-promo__cta-description {
    font-size: 1em;
  }

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

  .page-promo__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promo__accordion-content {
    padding: 15px 20px;
  }

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

  /* Critical: Prevent content overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content images are not smaller than 200px display size */
  .page-promo__promo-card-image, .page-promo__cta-image, .page-promo__hero-image {
    min-width: 200px;
    min-height: 200px; /* Adjust if the aspect ratio allows for larger height */
    object-fit: cover;
  }
  .page-promo__promo-card-image {
    width: 100%; /* Ensure it fills card width */
    height: auto; /* Maintain aspect ratio */
    max-height: 250px; /* Optional: cap max height */
  }
  .page-promo__cta-image {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
  .page-promo__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
  }

}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }

  .page-promo__hero-description {
    font-size: 0.9em;
  }

  .page-promo__hero-actions .page-promo__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .page-promo__section-title {
    font-size: 1.5em;
  }

  .page-promo__promo-card-title {
    font-size: 1.2em;
  }

  .page-promo__cta-title {
    font-size: 1.6em;
  }
}