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

.page-promo-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #007bff; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-promo-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promo-vip-program__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-promo-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-vip-program__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

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

.page-promo-vip-program__hero-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary brand color for buttons */
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo-vip-program__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promo-vip-program__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #007bff; /* Primary brand color for section titles */
  font-weight: bold;
}

.page-promo-vip-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-promo-vip-program__benefits-section,
.page-promo-vip-program__tiers-section,
.page-promo-vip-program__join-section,
.page-promo-vip-program__faq-section,
.page-promo-vip-program__final-cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo-vip-program__benefits-grid,
.page-promo-vip-program__tiers-grid,
.page-promo-vip-program__join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-vip-program__benefit-card,
.page-promo-vip-program__tier-card,
.page-promo-vip-program__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-vip-program__benefit-card:hover,
.page-promo-vip-program__tier-card:hover,
.page-promo-vip-program__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promo-vip-program__benefit-card img,
.page-promo-vip-program__tier-card img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

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

.page-promo-vip-program__card-description {
  font-size: 1em;
  color: #666666;
}

.page-promo-vip-program__tier-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-promo-vip-program__tier-features li {
  margin-bottom: 10px;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-promo-vip-program__tier-features li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-promo-vip-program__join-section a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-vip-program__join-section a:hover {
  text-decoration: underline;
}

.page-promo-vip-program__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #e6f2ff; /* Light blue background for CTA */
  border-radius: 10px;
}

.page-promo-vip-program__cta-text {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promo-vip-program__cta-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 10px;
}

.page-promo-vip-program__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-promo-vip-program__cta-button--secondary {
  background-color: #ffc107;
  color: #000000;
}

.page-promo-vip-program__cta-button--secondary:hover {
  background-color: #e0a800;
}

.page-promo-vip-program__faq-list {
  margin-top: 30px;
}

.page-promo-vip-program__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-promo-vip-program__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-vip-program__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-top: 10px;
  display: block; /* Ensure answer is always visible for this example */
}

.page-promo-vip-program__support-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #fff3e0; /* Light orange background */
  border-radius: 10px;
}

.page-promo-vip-program__support-text {
  font-size: 1.2em;
  color: #856404;
  margin-bottom: 20px;
}

.page-promo-vip-program__support-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo-vip-program__support-button:hover {
  background-color: #e0a800;
}

.page-promo-vip-program__final-cta-section {
  text-align: center;
  margin-bottom: 80px;
}

.page-promo-vip-program__final-cta-buttons {
  margin-top: 40px;
}

.page-promo-vip-program__final-cta-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 15px;
}

.page-promo-vip-program__final-cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-promo-vip-program__final-cta-button--secondary {
  background-color: #ffc107;
  color: #000000;
}

.page-promo-vip-program__final-cta-button--secondary:hover {
  background-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1.2em;
  }
  .page-promo-vip-program__section-title {
    font-size: 2em;
  }
  .page-promo-vip-program__benefits-grid,
  .page-promo-vip-program__tiers-grid,
  .page-promo-vip-program__join-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promo-vip-program__final-cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-promo-vip-program__hero-section {
    padding: 60px 15px;
  }
  .page-promo-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-promo-vip-program__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo-vip-program__benefits-section,
  .page-promo-vip-program__tiers-section,
  .page-promo-vip-program__join-section,
  .page-promo-vip-program__faq-section,
  .page-promo-vip-program__final-cta-section {
    margin: 40px auto;
    padding: 20px 15px;
  }
  .page-promo-vip-program__benefit-card,
  .page-promo-vip-program__tier-card,
  .page-promo-vip-program__step-card {
    padding: 20px;
  }
  .page-promo-vip-program__card-title {
    font-size: 1.5em;
  }
  .page-promo-vip-program__cta-block {
    padding: 30px 20px;
  }
  .page-promo-vip-program__cta-text {
    font-size: 1.3em;
    margin-bottom: 20px;
  }
  .page-promo-vip-program__cta-button {
    display: block;
    margin: 15px auto;
    width: 90%;
    max-width: 300px;
  }
  .page-promo-vip-program__faq-question {
    font-size: 1.1em;
  }
  .page-promo-vip-program__final-cta-button {
    display: block;
    margin: 15px auto;
    width: 90%;
    max-width: 350px;
    font-size: 1.1em;
  }
  /* Mobile content image constraint */
  .page-promo-vip-program img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-vip-program__hero-section .page-promo-vip-program__hero-image img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-vip-program__benefit-card img,
  .page-promo-vip-program__tier-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1em;
  }
  .page-promo-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promo-vip-program__cta-text {
    font-size: 1.1em;
  }
}