.page-index-vip-privileges {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-vip-privileges__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000);
}

.page-index-vip-privileges__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

.page-index-vip-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #FFFFFF; /* Light text on dark/gradient background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-vip-privileges__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-index-vip-privileges__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-index-vip-privileges__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-vip-privileges__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-index-vip-privileges__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep red text */
}

.page-index-vip-privileges__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-vip-privileges__button--secondary {
  background-color: #8B0000; /* Deep red */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-vip-privileges__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-index-vip-privileges__overview-section,
.page-index-vip-privileges__how-to-join-section,
.page-index-vip-privileges__faq-section,
.page-index-vip-privileges__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-index-vip-privileges__section-title {
  font-size: 2.8em;
  color: #8B0000; /* Deep red */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-vip-privileges__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-index-vip-privileges__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

.page-index-vip-privileges__benefit-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

.page-index-vip-privileges__benefit-icon {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 5px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-vip-privileges__benefit-title {
  font-size: 1.6em;
  color: #8B0000; /* Deep red */
  margin-bottom: 15px;
}

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

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

.page-index-vip-privileges__step-card {
  background-color: #FDFDFD;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border-bottom: 5px solid #8B0000;
  position: relative;
  overflow: hidden;
}

.page-index-vip-privileges__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.7); /* Translucent gold */
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  z-index: 0;
}

.page-index-vip-privileges__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-index-vip-privileges__step-description {
  font-size: 1em;
  color: #666666;
  position: relative;
  z-index: 1;
}

.page-index-vip-privileges__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-index-vip-privileges__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-index-vip-privileges__faq-list {
  margin-top: 40px;
}

.page-index-vip-privileges__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-left: 5px solid #FFD700;
}

.page-index-vip-privileges__faq-question {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-vip-privileges__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

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

.page-index-vip-privileges__cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-index-vip-privileges__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  background: rgba(139, 0, 0, 0.7); /* Deep red overlay */
  border-radius: 10px;
}

.page-index-vip-privileges__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

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

.page-index-vip-privileges__button--cta {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep red text */
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-vip-privileges__button--cta:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-vip-privileges__hero-title {
    font-size: 3em;
  }
  .page-index-vip-privileges__hero-description {
    font-size: 1.2em;
  }
  .page-index-vip-privileges__section-title {
    font-size: 2.4em;
  }
  .page-index-vip-privileges__benefit-title {
    font-size: 1.4em;
  }
  .page-index-vip-privileges__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-vip-privileges__hero-section {
    padding-bottom: 40px;
  }
  .page-index-vip-privileges__hero-title {
    font-size: 2.5em;
  }
  .page-index-vip-privileges__hero-description {
    font-size: 1em;
  }
  .page-index-vip-privileges__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-vip-privileges__button {
    width: 100%;
    max-width: 300px;
  }
  .page-index-vip-privileges__overview-section,
  .page-index-vip-privileges__how-to-join-section,
  .page-index-vip-privileges__faq-section,
  .page-index-vip-privileges__cta-section {
    margin: 40px auto;
  }
  .page-index-vip-privileges__section-title {
    font-size: 2em;
  }
  .page-index-vip-privileges__section-intro {
    font-size: 0.95em;
  }
  .page-index-vip-privileges__benefits-grid,
  .page-index-vip-privileges__steps-container {
    grid-template-columns: 1fr;
  }
  .page-index-vip-privileges__benefit-card,
  .page-index-vip-privileges__step-card {
    padding: 25px;
  }
  .page-index-vip-privileges__benefit-icon {
    width: 150px;
    height: 150px;
  }
  .page-index-vip-privileges__step-number {
    font-size: 2.5em;
  }
  .page-index-vip-privileges__cta-content {
    padding: 30px;
  }
  .page-index-vip-privileges__cta-title {
    font-size: 1.8em;
  }
  .page-index-vip-privileges__cta-description {
    font-size: 1em;
  }
  .page-index-vip-privileges__button--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  
  /* Mobile image overflow prevention */
  .page-index-vip-privileges img {
    max-width: 100%;
    height: auto;
  }
  .page-index-vip-privileges__hero-image {
    max-width: 100%;
    height: 100%;
  }
  .page-index-vip-privileges__cta-image {
    max-width: 100%;
    height: 100%;
  }
  .page-index-vip-privileges__benefit-icon {
    max-width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-index-vip-privileges__hero-title {
    font-size: 2em;
  }
  .page-index-vip-privileges__section-title {
    font-size: 1.8em;
  }
  .page-index-vip-privileges__cta-title {
    font-size: 1.5em;
  }
  .page-index-vip-privileges__button {
    min-width: unset;
  }
}