.page-vip-program {
  color: #333333;
  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: #000080; /* Deep blue background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

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

.page-vip-program__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #000080; /* Deep blue for section titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

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

.page-vip-program__overview-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

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

.page-vip-program__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__feature-image {
  width: 100%; /* Ensure images fill card width */
  height: 267px; /* 400x267 for 600x400 aspect ratio */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

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

.page-vip-program__tiers-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

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

.page-vip-program__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-program__tier-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-vip-program__tier-image {
  width: 100%;
  height: 210px; /* 300x210 for 400x300 aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  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="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: 28px;
  margin-bottom: 10px;
  color: #444444;
}

.page-vip-program__tier-requirement {
  font-size: 0.95em;
  color: #777777;
  font-style: italic;
}

.page-vip-program__disclaimer-text {
  font-size: 0.9em;
  color: #888888;
  text-align: center;
  margin-top: 40px;
}

.page-vip-program__how-to-join-section {
  background-color: #000080;
  color: #ffffff;
  padding: 60px 0;
}

.page-vip-program__how-to-join-section .page-vip-program__section-title {
  color: #FFD700;
}

.page-vip-program__how-to-join-section .page-vip-program__section-description {
  color: #e0e0e0;
}

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

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

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

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

.page-vip-program__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-vip-program__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-vip-program__faq-question {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 10px;
}

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

.page-vip-program__faq-question.active + .page-vip-program__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
}

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

.page-vip-program__cta-content {
  max-width: 900px;
}

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

.page-vip-program__cta-section .page-vip-program__section-description {
  color: #333333;
  margin-bottom: 40px;
}

.page-vip-program__cta-button--large {
  padding: 18px 45px;
  font-size: 1.3em;
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #000080;
}

.page-vip-program__cta-button--large:hover {
  background-color: #000066;
  border-color: #000066;
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-program__main-title {
    font-size: 2.8em;
  }
  .page-vip-program__section-title {
    font-size: 2.2em;
  }
  .page-vip-program__features-grid,
  .page-vip-program__tiers-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program__main-title {
    font-size: 2.2em;
  }
  .page-vip-program__intro-text {
    font-size: 1.1em;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-description {
    font-size: 1em;
  }
  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__hero-section {
    padding: 60px 20px;
  }
  .page-vip-program__features-grid,
  .page-vip-program__tiers-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  /* Content area images must not be styled to be smaller than 200px. */
  /* These rules are for general content images and ensure they are responsive but not too small */
  .page-vip-program__hero-image {
    min-width: unset;
    min-height: unset;
  }
  .page-vip-program__feature-image,
  .page-vip-program__tier-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
    object-fit: cover; /* Maintain aspect ratio and cover area */
  }
  .page-vip-program__cta-section .page-vip-program__section-title {
    font-size: 2.2em;
  }
  .page-vip-program__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-vip-program__main-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-title {
    font-size: 1.6em;
  }
  .page-vip-program__hero-section {
    padding: 40px 15px;
  }
  .page-vip-program__cta-section .page-vip-program__section-title {
    font-size: 1.8em;
  }
}