.page-vip-program {
  color: #333333; /* Default text color for light body background */
}

.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

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

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-vip-program__hero-cta-button,
.page-vip-program__cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Auxiliary color for buttons */
  color: #0A2463; /* Main color for text on auxiliary background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program__hero-cta-button:hover,
.page-vip-program__cta-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-2px);
}

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

.page-vip-program__introduction-section,
.page-vip-program__levels-section,
.page-vip-program__benefits-section,
.page-vip-program__how-to-join-section,
.page-vip-program__faq-section,
.page-vip-program__details-list-section,
.page-vip-program__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-program__section-title {
  font-size: 2.8em;
  color: #0A2463; /* Main color for titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-vip-program__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

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

.page-vip-program__level-card,
.page-vip-program__benefit-item,
.page-vip-program__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Ensure cards have sufficient height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-program__level-card:hover,
.page-vip-program__benefit-item:hover,
.page-vip-program__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__level-image,
.page-vip-program__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensures image is not too wide */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-program__level-title,
.page-vip-program__benefit-title,
.page-vip-program__detail-title {
  font-size: 1.8em;
  color: #0A2463; /* Main color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__detail-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-vip-program__detail-title a:hover {
  text-decoration: underline;
  color: #E3B23C;
}

.page-vip-program__level-description,
.page-vip-program__benefit-description,
.page-vip-program__detail-description {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-vip-program__detail-button {
  display: inline-block;
  background-color: #0A2463; /* Main color for secondary buttons */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__detail-button:hover {
  background-color: #1c4dc3; /* Darker shade on hover */
  transform: translateY(-2px);
}

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

.page-vip-program__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  overflow: hidden;
}

.page-vip-program__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-vip-program__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #E3B23C;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive adjustments */
@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: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-vip-program__hero-description {
    font-size: 1em;
  }
  .page-vip-program__hero-cta-button,
  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-text {
    font-size: 0.95em;
  }
  .page-vip-program__levels-grid,
  .page-vip-program__benefits-grid,
  .page-vip-program__details-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program__level-card,
  .page-vip-program__benefit-item,
  .page-vip-program__detail-card {
    padding: 25px;
  }
  .page-vip-program__level-title,
  .page-vip-program__benefit-title,
  .page-vip-program__detail-title {
    font-size: 1.5em;
  }
  .page-vip-program__level-description,
  .page-vip-program__benefit-description,
  .page-vip-program__detail-description {
    font-size: 0.9em;
  }
  /* Content area images must not cause horizontal scroll */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program__faq-question {
    font-size: 1.1em;
  }
  .page-vip-program__faq-answer {
    font-size: 0.9em;
  }
}

@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.5em;
  }
  .page-vip-program__hero-section {
    padding-top: var(--header-offset, 100px); /* Adjust for smaller mobile header */
  }
}