.page-vip-program {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for default light body background */
  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 {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  background-color: #0A2342;
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-vip-program__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  z-index: 10;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F2C94C; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-program__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-vip-program__hero-button,
.page-vip-program__call-to-action-button,
.page-vip-program__how-to-join-button,
.page-vip-program__cta-button {
  display: inline-block;
  background-color: #F2C94C; /* Auxiliary color for buttons */
  color: #0A2342; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__hero-button:hover,
.page-vip-program__call-to-action-button:hover,
.page-vip-program__how-to-join-button:hover,
.page-vip-program__cta-button:hover {
  background-color: #e0b43c;
  transform: translateY(-2px);
}

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Main color for titles */
  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: #F2C94C; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-vip-program__introduction-section,
.page-vip-program__tiers-overview-section,
.page-vip-program__exclusive-benefits-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__cta-section {
  padding: 80px 0;
}

.page-vip-program__introduction-section {
  background-color: #f9f9f9;
}

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

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

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

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

.page-vip-program__tier-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-vip-program__tier-card-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-vip-program__tier-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
}

.page-vip-program__learn-more-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #0A2342; /* Main color for secondary button */
  color: #F2C94C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__learn-more-button:hover {
  background-color: #1a3a60;
  transform: translateY(-2px);
}

.page-vip-program__exclusive-benefits-section {
  background-color: #f0f4f8;
}

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

.page-vip-program__benefit-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-program__benefit-image {
  width: 250px; /* Ensure images are not too small */
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-program__benefit-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
}

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

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

.page-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  max-width: 800px;
}

.page-vip-program__step-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  text-align: left;
}

.page-vip-program__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F2C94C; /* Auxiliary color */
  color: #0A2342; /* Main color */
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-vip-program__step-text {
  font-size: 1.1em;
  color: #333333;
  margin: 0;
}

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

.page-vip-program__faq-items {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.page-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-vip-program__cta-section {
  background-color: #0A2342; /* Main color for CTA background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-vip-program__cta-section .page-vip-program__section-title {
  color: #F2C94C; /* Auxiliary color for CTA title */
}

.page-vip-program__cta-section .page-vip-program__text-content {
  color: #f0f0f0;
  margin-bottom: 50px;
}

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

@media (max-width: 768px) {
  .page-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__hero-button,
  .page-vip-program__call-to-action-button,
  .page-vip-program__how-to-join-button,
  .page-vip-program__cta-button,
  .page-vip-program__learn-more-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__introduction-section,
  .page-vip-program__tiers-overview-section,
  .page-vip-program__exclusive-benefits-section,
  .page-vip-program__how-to-join-section,
  .page-vip-program__faq-section,
  .page-vip-program__cta-section {
    padding: 60px 0;
  }
  .page-vip-program__text-content {
    font-size: 0.95em;
  }
  .page-vip-program__tier-cards,
  .page-vip-program__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__tier-card-image {
    height: 200px;
  }
  .page-vip-program__benefit-image {
    width: 200px; /* Ensure images are not too small */
    height: 150px;
  }
  .page-vip-program__faq-question {
    font-size: 1.2em;
  }
  /* Mobile content area images must not overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program__hero-section .page-vip-program__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@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.8em;
  }
  .page-vip-program__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-vip-program__step-text {
    font-size: 0.9em;
  }
}