.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Ensure consistency with shared body background */
}

.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0d0d0d; /* Slightly different dark background for hero */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden; /* Prevent image overflow */
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
  margin: 20px;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.7);
}

.page-vip-program__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-vip-program__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-program__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-vip-program__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-vip-program__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-program__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Light text for dark background */
}

.page-vip-program__inline-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__inline-link:hover {
  text-decoration: underline;
}

.page-vip-program__intro-section,
.page-vip-program__benefits-section,
.page-vip-program__faq-section {
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
}

.page-vip-program__tiers-section,
.page-vip-program__how-to-join-section,
.page-vip-program__cta-section {
  background-color: #0d0d0d; /* Slightly darker background for contrast */
  color: #ffffff;
}

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

.page-vip-program__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Light text for cards */
}

.page-vip-program__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-vip-program__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-vip-program__tier-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-vip-program__tier-benefits-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #e0e0e0;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-vip-program__tier-benefits-list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-vip-program__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program__guide-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.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 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-vip-program__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-vip-program__faq-list {
  margin-top: 30px;
}

.page-vip-program__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff; /* Light text for question */
}

.page-vip-program__faq-question h3 {
  margin: 0;
  color: #ffffff; /* Light text for question title */
}

.page-vip-program__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-vip-program__faq-item.active .page-vip-program__faq-toggle {
  transform: rotate(45deg); /* Plus to X/minus visual */
}

.page-vip-program__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0; /* Slightly lighter text for answer */
}

.page-vip-program__faq-item.active .page-vip-program__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px; /* Add bottom padding when active */
}

.page-vip-program__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-vip-program__cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1a1a1a;
}

.page-vip-program__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

/* Responsive Styles */
@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 {
    min-height: 450px;
  }
  .page-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__text-block {
    font-size: 0.95em;
  }
  .page-vip-program__container {
    padding: 20px 15px !important; /* Add padding to prevent overflow */
  }

  /* Image responsiveness */
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Container responsiveness for images/videos/buttons */
  .page-vip-program__section,
  .page-vip-program__card,
  .page-vip-program__container,
  .page-vip-program__cta-buttons,
  .page-vip-program__tier-cards,
  .page-vip-program__benefits-grid,
  .page-vip-program__steps-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Button responsiveness */
  .page-vip-program__btn-primary,
  .page-vip-program__btn-secondary,
  .page-vip-program a[class*="button"],
  .page-vip-program a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Stack buttons */
  }
  .page-vip-program__hero-cta {
    flex-direction: column; /* Stack buttons in hero */
  }
  .page-vip-program__cta-buttons {
    flex-direction: column; /* Stack buttons in CTA */
  }

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