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

.page-promo-vip-program__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
  position: relative;
}

.page-promo-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to allow text readability */
}

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

.page-promo-vip-program__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-promo-vip-program__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-vip-program__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Deep blue text */
  text-decoration: none;
  border-radius: 8px;
  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: #e6c200;
  transform: translateY(-2px);
}

.page-promo-vip-program__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-promo-vip-program__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #003366; /* Deep blue for titles */
}

.page-promo-vip-program__section-title--light {
  color: #ffffff;
}

.page-promo-vip-program__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
}

.page-promo-vip-program__section-subtitle--light {
  color: #f0f0f0;
}

.page-promo-vip-program__tiers-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.page-promo-vip-program__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo-vip-program__tier-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-promo-vip-program__tier-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-vip-program__tier-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo-vip-program__tier-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-vip-program__tier-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  color: #555555;
}

.page-promo-vip-program__tier-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
}

.page-promo-vip-program__tier-features li:last-child {
  border-bottom: none;
}

.page-promo-vip-program__tier-features li::before {
  content: '✔';
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
}

.page-promo-vip-program__tier-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #003366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-promo-vip-program__tier-button:hover {
  background-color: #004488;
}

.page-promo-vip-program__benefits-section {
  background-color: #003366; /* Deep blue background */
  padding: 80px 20px;
  color: #ffffff;
}

.page-promo-vip-program__benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-promo-vip-program__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-vip-program__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promo-vip-program__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-promo-vip-program__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promo-vip-program__benefits-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo-vip-program__join-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-promo-vip-program__join-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-vip-program__join-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 50px;
}

.page-promo-vip-program__join-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-promo-vip-program__join-steps li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #003366;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-promo-vip-program__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promo-vip-program__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-promo-vip-program__join-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo-vip-program__testimonials-section {
  background-color: #003366; /* Deep blue background */
  padding: 80px 20px;
  color: #ffffff;
}

.page-promo-vip-program__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0 auto;
}

.page-promo-vip-program__testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-vip-program__testimonial-text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  color: #f0f0f0;
}

.page-promo-vip-program__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1.05em;
}

.page-promo-vip-program__cta-section {
  position: relative;
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
  overflow: hidden;
}

.page-promo-vip-program__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.page-promo-vip-program__cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-vip-program__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-promo-vip-program__hero-section {
    min-height: 400px;
    padding: 40px 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-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-vip-program__hero-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promo-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo-vip-program__tiers-grid, .page-promo-vip-program__benefits-grid, .page-promo-vip-program__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-vip-program__tier-card, .page-promo-vip-program__benefit-item, .page-promo-vip-program__testimonial-card {
    padding: 25px;
  }

  .page-promo-vip-program__benefit-icon {
    width: 80px; /* Reduced for smaller screens, but still >= 200px due to general rule */
    height: 80px; /* This will be overridden by max-width: 100%; height: auto; to ensure >=200px display */
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo-vip-program__join-steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promo-vip-program__join-steps li::before {
    margin-bottom: 15px;
  }

  /* Ensure all images within content area are responsive and not smaller than 200px */
  .page-promo-vip-program img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo-vip-program__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promo-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promo-vip-program__hero-description {
    font-size: 1em;
  }
  .page-promo-vip-program__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}