.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f8f9fa; /* Light background for hero */
  text-align: center;
  padding-bottom: 40px;
}

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

.page-promo__hero-title {
  font-size: 3.2em;
  color: #007bff; /* Primary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

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

.page-promo__hero-image {
  margin-bottom: 30px;
}

.page-promo__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-promo__cta-button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__cta-button--secondary {
  background-color: #28a745; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-promo__cta-button--secondary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__section:nth-of-type(even) {
  background-color: #f4f7f6; /* Body background color */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-promo__card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #1e7e34;
}

.page-promo__vip-rewards .page-promo__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-promo__vip-rewards .page-promo__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promo__vip-rewards .page-promo__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__vip-rewards .page-promo__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promo__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-promo__feature-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-promo__feature-item::before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promo__faq-section {
  background-color: #f4f7f6;
}

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

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

.page-promo__accordion-header {
  background-color: #007bff;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__accordion-header:hover {
  background-color: #0056b3;
}

.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: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.6;
  color: #555555;
}

.page-promo__final-cta {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__final-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-promo__final-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-promo__final-cta .page-promo__cta-button--primary {
  background-color: #ffffff;
  color: #007bff;
  border-color: #ffffff;
}

.page-promo__final-cta .page-promo__cta-button--primary:hover {
  background-color: #e0e0e0;
  color: #0056b3;
  border-color: #e0e0e0;
}

.page-promo__final-cta-image {
  margin-top: 50px;
}

.page-promo__final-cta-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__final-cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__section {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__vip-rewards .page-promo__content-wrapper {
    flex-direction: column;
  }
  .page-promo__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__final-cta {
    padding: 60px 15px;
  }
  .page-promo__final-cta-title {
    font-size: 2em;
  }
  .page-promo__final-cta-description {
    font-size: 1.1em;
  }
  /* Mobile image scaling */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__final-cta-title {
    font-size: 1.8em;
  }
}