.page-vip-exclusive-services {
  font-family: 'Arial', sans-serif;
  color: #0A2463; /* Main text color based on primary color */
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-vip-exclusive-services__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c9f 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-vip-exclusive-services__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-vip-exclusive-services__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold for emphasis */
  font-weight: bold;
}

.page-vip-exclusive-services__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-vip-exclusive-services__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-vip-exclusive-services__btn--primary {
  background-color: #E3B505; /* Gold button */
  color: #0A2463; /* Dark blue text */
  margin-right: 15px;
}

.page-vip-exclusive-services__btn--primary:hover {
  background-color: #ffc80a;
  transform: translateY(-2px);
}

.page-vip-exclusive-services__btn--secondary {
  background-color: transparent;
  color: #E3B505; /* Gold text */
  border: 2px solid #E3B505;
}

.page-vip-exclusive-services__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-vip-exclusive-services__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-vip-exclusive-services__benefits,
.page-vip-exclusive-services__how-to-join,
.page-vip-exclusive-services__experience,
.page-vip-exclusive-services__commitment,
.page-vip-exclusive-services__cta-bottom,
.page-vip-exclusive-services__faq {
  padding: 60px 0;
}

.page-vip-exclusive-services__benefits {
  background-color: #ffffff;
}

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

.page-vip-exclusive-services__benefit-card {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-exclusive-services__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-exclusive-services__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-exclusive-services__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-vip-exclusive-services__how-to-join {
  background-color: #e6f0ff; /* Lighter blue */
}

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

.page-vip-exclusive-services__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-vip-exclusive-services__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E3B505;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #0A2463;
}

.page-vip-exclusive-services__subtitle {
  font-size: 2em;
  color: #0A2463;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-exclusive-services__text-content {
  font-size: 1.1em;
  color: #333;
  text-align: justify;
  margin-bottom: 20px;
}

.page-vip-exclusive-services__list {
  list-style: disc inside;
  text-align: left;
  margin: 20px auto;
  max-width: 800px;
  color: #333;
  font-size: 1.05em;
}

.page-vip-exclusive-services__list li {
  margin-bottom: 10px;
}

.page-vip-exclusive-services__list li strong {
  color: #0A2463;
}

.page-vip-exclusive-services__experience {
  background-color: #f0f6ff;
}

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

.page-vip-exclusive-services__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-exclusive-services__feature-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-exclusive-services__commitment {
  background-color: #ffffff;
}

.page-vip-exclusive-services__commitment-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-exclusive-services__commitment-list li {
  background-color: #f8f9fa;
  border-left: 5px solid #E3B505;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-vip-exclusive-services__list-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-exclusive-services__cta-bottom {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-vip-exclusive-services__cta-bottom .page-vip-exclusive-services__section-title {
  color: #E3B505;
}

.page-vip-exclusive-services__cta-bottom .page-vip-exclusive-services__section-intro {
  color: #e0e0e0;
}

.page-vip-exclusive-services__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-vip-exclusive-services__faq {
  background-color: #f0f6ff;
}

.page-vip-exclusive-services__faq-list {
  margin-top: 40px;
}

.page-vip-exclusive-services__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-exclusive-services__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

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

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

.page-vip-exclusive-services__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-vip-exclusive-services__faq-answer.open {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-exclusive-services__hero-title {
    font-size: 2.8em;
  }
  .page-vip-exclusive-services__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-exclusive-services__hero {
    padding: 80px 0;
  }
  .page-vip-exclusive-services__hero-title {
    font-size: 2.2em;
  }
  .page-vip-exclusive-services__hero-description {
    font-size: 1em;
  }
  .page-vip-exclusive-services__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-exclusive-services__benefit-grid,
  .page-vip-exclusive-services__process-steps,
  .page-vip-exclusive-services__feature-grid,
  .page-vip-exclusive-services__commitment-list {
    grid-template-columns: 1fr;
  }
  .page-vip-exclusive-services__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-exclusive-services__btn--primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .page-vip-exclusive-services__hero-title {
    font-size: 1.8em;
  }
  .page-vip-exclusive-services__section-title {
    font-size: 1.8em;
  }
  .page-vip-exclusive-services__hero-description {
    font-size: 0.9em;
  }
  .page-vip-exclusive-services__container {
    padding: 0 15px;
  }
  .page-vip-exclusive-services__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-vip-exclusive-services__step-number {
    top: -15px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-vip-exclusive-services__step-card {
    padding-top: 50px;
  }
  .page-vip-exclusive-services__card-title {
    font-size: 1.3em;
  }
  .page-vip-exclusive-services__list li,
  .page-vip-exclusive-services__text-content,
  .page-vip-exclusive-services__card-description {
    font-size: 0.95em;
  }
  .page-vip-exclusive-services__faq-question {
    font-size: 1.1em;
  }
  .page-vip-exclusive-services__faq-answer {
    font-size: 0.9em;
  }
}