.page-vip-program {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-vip-program__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-vip-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-program__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-vip-program__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000; /* Dark text for golden button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  border: 2px solid transparent;
}

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

.page-vip-program__hero-cta-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-program__hero-cta-button--secondary:hover {
  background-color: #a00000;
  border-color: #e6c200;
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-program__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__why-join-section, .page-vip-program__tiers-section, .page-vip-program__how-to-join-section, .page-vip-program__faq-section, .page-vip-program__cta-final-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.03); /* Slightly lighter background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-vip-program__why-join-section {
  background-color: rgba(255, 255, 255, 0.05);
}

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

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

.page-vip-program__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-vip-program__benefit-icon {
  width: 250px;
  height: auto; /* Ensures image aspect ratio is maintained */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-vip-program__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-program__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-vip-program__cta-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid #FFD700;
}

.page-vip-program__cta-button:hover {
  background-color: #a00000;
  transform: translateY(-3px);
  border-color: #e6c200;
}

.page-vip-program__cta-button--large {
  padding: 20px 50px;
  font-size: 1.4em;
}

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

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

.page-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-vip-program__tier-image {
  width: 100%;
  height: 250px; /* Fixed height for tier images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-vip-program__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #f0f0f0;
}

.page-vip-program__tier-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.95em;
}

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

.page-vip-program__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-vip-program__step-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-vip-program__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-vip-program__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-vip-program__step-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-program__faq-accordion {
  margin-top: 40px;
}

.page-vip-program__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-program__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-vip-program__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-program__faq-answer p {
  color: #cccccc;
  padding-bottom: 20px;
  margin: 0;
}

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

@media (max-width: 768px) {
  .page-vip-program__hero-section {
    min-height: 450px;
  }
  .page-vip-program__hero-title {
    font-size: 2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-intro {
    font-size: 0.95em;
  }
  .page-vip-program__benefits-grid, .page-vip-program__tiers-carousel, .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__benefit-icon, .page-vip-program__step-icon {
    width: 200px; /* Ensure minimum size for images */
    height: auto;
  }
  .page-vip-program__tier-image {
    height: 200px; /* Minimum height for tier images */
  }
  .page-vip-program__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-vip-program__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
  }
  /* Mobile content area images must not overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-vip-program__faq-question::after {
    right: 15px;
  }
  .page-vip-program__faq-answer p {
    padding-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-vip-program__hero-description {
    font-size: 0.9em;
  }
  .page-vip-program__section-title {
    font-size: 1.6em;
  }
  .page-vip-program__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

/* Ensure all content area images are at least 200px wide for desktop */
.page-vip-program__benefits-grid img, 
.page-vip-program__tiers-carousel img, 
.page-vip-program__steps-grid img {
  min-width: 200px;
  min-height: 200px;
}