.page-vip-program {
  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-vip-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-program__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

.page-vip-program__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

.page-vip-program__hero-cta {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-vip-program__hero-cta:hover {
  background-color: #e0a030;
}

.page-vip-program__overview-section,
.page-vip-program__tiers-section,
.page-vip-program__how-to-join-section,
.page-vip-program__details-list-section,
.page-vip-program__faq-section,
.page-vip-program__final-cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

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

.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;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-vip-program__feature-description {
  color: #666666;
}

.page-vip-program__tiers-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-vip-program__tiers-section .page-vip-program__section-title,
.page-vip-program__tiers-section .page-vip-program__section-intro {
  color: #FFFFFF;
}

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

.page-vip-program__tier-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.page-vip-program__tier-card img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid #FCBC45;
  box-shadow: 0 0 15px rgba(252, 188, 69, 0.5);
}

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

.page-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-program__tier-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.83"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-vip-program__cta-area {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__cta-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

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

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

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

.page-vip-program__step-cta {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-vip-program__step-cta:hover {
  background-color: #333333;
}

.page-vip-program__details-list-section {
  background-color: #FFFFFF;
}

.page-vip-program__detail-card {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-vip-program__detail-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-vip-program__detail-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-program__detail-title a:hover {
  color: #FCBC45;
}

.page-vip-program__detail-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-program__detail-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-vip-program__detail-button:hover {
  background-color: #e0a030;
}

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

.page-vip-program__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-vip-program__faq-question {
  font-size: 1.4em;
  color: #000000;
  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.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

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

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

.page-vip-program__final-cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-vip-program__final-cta-section .page-vip-program__section-title,
.page-vip-program__final-cta-section .page-vip-program__section-intro {
  color: #FFFFFF;
}

.page-vip-program__final-cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

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

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

@media (max-width: 768px) {
  .page-vip-program__hero-section {
    padding: 60px 15px;
    flex-direction: column;
  }
  .page-vip-program__hero-title {
    font-size: 2.5em;
  }
  .page-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-vip-program__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-program__overview-section,
  .page-vip-program__tiers-section,
  .page-vip-program__how-to-join-section,
  .page-vip-program__details-list-section,
  .page-vip-program__faq-section,
  .page-vip-program__final-cta-section {
    padding: 40px 0;
  }

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

  .page-vip-program__features-grid,
  .page-vip-program__tiers-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-program__tier-card img {
    width: 200px;
    height: 200px;
  }

  .page-vip-program__final-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-vip-program__faq-question {
    font-size: 1.2em;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 2em;
  }
  .page-vip-program__hero-description {
    font-size: 0.95em;
  }
  .page-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-vip-program__tier-title {
    font-size: 1.5em;
  }
  .page-vip-program__step-title {
    font-size: 1.3em;
  }
  .page-vip-program__detail-title {
    font-size: 1.5em;
  }
  .page-vip-program__faq-question {
    font-size: 1.1em;
  }
}