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

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

.page-vip-program__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Deep blue background */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let background color show through */
}

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

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Golden yellow for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-program__hero-button,
.page-vip-program__tier-button,
.page-vip-program__step-button,
.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program__hero-button:hover,
.page-vip-program__tier-button:hover,
.page-vip-program__step-button:hover,
.page-vip-program__cta-button:hover {
  background-color: #e6b800; /* Slightly darker yellow */
  color: #002244;
}

.page-vip-program__overview-section,
.page-vip-program__tiers-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__cta-section {
  padding: 60px 0;
}

.page-vip-program__overview-section {
  background-color: #f8f8f8;
}

.page-vip-program__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
}

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

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

.page-vip-program__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-program__feature-card:hover {
  transform: translateY(-10px);
}

.page-vip-program__feature-icon {
  width: 250px; /* Minimum 200px */
  height: 187.5px; /* Maintain aspect ratio for 4:3 from 800x600 */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-program__feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-vip-program__tiers-section {
  background-color: #002244;
  color: #ffffff;
}

.page-vip-program__tiers-section .page-vip-program__section-title {
  color: #FFCC00;
}

.page-vip-program__tiers-section .page-vip-program__section-intro {
  color: #e0e0e0;
}

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

.page-vip-program__tier-card {
  background-color: #003366;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-vip-program__tier-card:hover {
  transform: translateY(-10px);
  border-color: #FFCC00;
}

.page-vip-program__tier-badge {
  width: 250px; /* Minimum 200px */
  height: 166.67px; /* Maintain aspect ratio for 3:2 from 600x400 */
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-vip-program__tier-description {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.page-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-vip-program__tier-benefits li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-benefits li::before {
  content: '★';
  color: #FFCC00;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-vip-program__how-to-join-section {
  background-color: #f8f8f8;
}

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

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

.page-vip-program__step-card:hover {
  transform: translateY(-10px);
}

.page-vip-program__step-number {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-vip-program__step-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-vip-program__faq-section {
  background-color: #eef4f8;
}

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

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

.page-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-vip-program__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-program__faq-answer {
  color: #555555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
}

.page-vip-program__cta-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-vip-program__cta-title {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-vip-program__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-vip-program__section-title,
  .page-vip-program__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program {
    padding-top: var(--header-offset, 120px);
  }

  .page-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-vip-program__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__section-title,
  .page-vip-program__cta-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-intro,
  .page-vip-program__cta-description {
    font-size: 1em;
  }
  .page-vip-program__features-grid,
  .page-vip-program__tier-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__feature-icon,
  .page-vip-program__tier-badge {
    width: 250px; /* Ensure images remain >= 200px */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
  }
  .page-vip-program__faq-question {
    font-size: 1.2em;
  }
  /* Ensure all images within .page-vip-program are responsive and do not cause overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  /* Specific override for hero image if needed, but general img rule should cover */
  .page-vip-program__hero-image {
    width: 100%;
    height: 100%; /* object-fit will handle this */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-title,
  .page-vip-program__cta-title {
    font-size: 1.5em;
  }
  .page-vip-program__feature-title,
  .page-vip-program__tier-title,
  .page-vip-program__step-title {
    font-size: 1.5em;
  }
  .page-vip-program__hero-section, .page-vip-program__cta-section {
    padding: 60px 15px;
  }
  .page-vip-program__container {
    padding: 0 15px;
  }
}