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

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  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: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.page-promo__button--primary {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-promo__button--primary:hover {
  background-color: #0056b3; /* Darker primary */
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #007bff; /* Primary color */
  border: 2px solid #007bff;
}

.page-promo__button--secondary:hover {
  background-color: #e0f2ff; /* Lighter primary */
  color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-promo__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin: 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* Featured Promos Section */
.page-promo__featured-promos {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.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: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

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

.page-promo__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #0056b3;
}

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

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

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

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

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

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

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

/* Detail Pages Section */
.page-promo__detail-pages {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promo__detail-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.page-promo__detail-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-promo__detail-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo__detail-title a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__detail-title a:hover {
  text-decoration: underline;
}

.page-promo__detail-description {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 15px;
}

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

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

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

.page-promo__accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-promo__accordion-header.active {
  background-color: #007bff;
  color: #ffffff;
  border-bottom-color: #007bff;
}

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

.page-promo__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  color: #555555;
}

/* Call to Action Bottom */
.page-promo__cta-bottom {
  padding: 80px 0;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  text-align: center;
}

.page-promo__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color */
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-bottom .page-promo__button--primary {
  background-color: #ffc107;
  color: #333333;
  border-color: #ffc107;
  font-size: 1.1em;
  padding: 15px 35px;
}

.page-promo__cta-bottom .page-promo__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
  }
  .page-promo__hero-content {
    padding: 30px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
  }
  .page-promo__hero-actions .page-promo__button {
    margin: 10px 0;
    width: 100%;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__promo-card {
    margin-bottom: 20px;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-promo__accordion-header {
    font-size: 1.1em;
  }
  .page-promo__accordion-content p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__hero-content {
    padding: 20px 10px;
  }
  .page-promo__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 0.9em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__detail-title {
    font-size: 1.3em;
  }
}