.page-vip-services {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.6;
}

.page-vip-services__hero-section {
  position: relative;
  width: 100%;
  height: 700px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0;
}

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

.page-vip-services__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-vip-services__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

.page-vip-services__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-vip-services__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-vip-services__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-vip-services__benefits-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

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

.page-vip-services__benefit-icon {
  width: 100%; /* Ensure image fills card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-services__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-services__benefit-text {
  font-size: 1em;
  color: #555555;
}

.page-vip-services__tiers-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-vip-services__tiers-section .page-vip-services__section-title {
  color: #FFFFFF;
}

.page-vip-services__tiers-section .page-vip-services__section-description {
  color: #f0f0f0;
}

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

.page-vip-services__tier-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-services__tier-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
}

.page-vip-services__tier-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-services__tier-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-vip-services__how-to-join-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.page-vip-services__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-vip-services__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-services__step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-vip-services__btn-link {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-services__btn-link:hover {
  color: #1a7bb5;
}

.page-vip-services__join-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #eaf7ff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-services__join-cta p {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-vip-services__testimonial-section {
  position: relative;
  padding: 100px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-vip-services__testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-vip-services__blockquote {
  max-width: 800px;
  margin: 40px auto 0 auto;
  font-style: italic;
}

.page-vip-services__quote-text {
  font-size: 1.5em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-vip-services__quote-author {
  font-size: 1.1em;
  font-weight: bold;
  color: #f0f0f0;
}

.page-vip-services__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-vip-services__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-vip-services__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-vip-services__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7ff;
  border-bottom: 1px solid #d9edf7;
  transition: background-color 0.3s ease;
}

.page-vip-services__faq-question:hover {
  background-color: #d9edf7;
}

.page-vip-services__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-services__faq-item.active .page-vip-services__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-services__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-vip-services__faq-item.active .page-vip-services__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px 20px 25px;
}

.page-vip-services__faq-answer p {
  font-size: 1em;
  color: #555555;
}

.page-vip-services__cta-final {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-vip-services__cta-final .page-vip-services__section-title {
  color: #FFFFFF;
}

.page-vip-services__cta-final .page-vip-services__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-services__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-vip-services__btn-primary,
.page-vip-services__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-services__btn-primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-vip-services__btn-primary:hover {
  background-color: #d96a00;
  border-color: #d96a00;
}

.page-vip-services__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-vip-services__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
  border-color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-services__hero-title {
    font-size: 3em;
  }

  .page-vip-services__hero-description {
    font-size: 1.1em;
  }

  .page-vip-services__section-title {
    font-size: 2em;
  }

  .page-vip-services__benefits-grid,
  .page-vip-services__tiers-grid,
  .page-vip-services__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-services__hero-section {
    height: 600px;
  }

  .page-vip-services__hero-title {
    font-size: 2.2em;
  }

  .page-vip-services__hero-description {
    font-size: 1em;
  }

  .page-vip-services__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-services__btn-primary,
  .page-vip-services__btn-secondary {
    width: 100%;
    max-width: 300px; /* Limit button width on mobile */
    margin: 0 auto;
  }

  .page-vip-services__section-title {
    font-size: 1.8em;
  }

  .page-vip-services__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-vip-services__benefit-card,
  .page-vip-services__tier-card,
  .page-vip-services__step-card {
    padding: 20px;
  }

  .page-vip-services__benefit-title,
  .page-vip-services__step-title {
    font-size: 1.3em;
  }

  .page-vip-services__tier-title {
    font-size: 1.5em;
  }

  .page-vip-services__quote-text {
    font-size: 1.2em;
  }

  .page-vip-services__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-vip-services__faq-answer {
    padding: 0 20px;
  }

  .page-vip-services__faq-item.active .page-vip-services__faq-answer {
    padding: 10px 20px 15px 20px;
  }

  .page-vip-services__join-cta p {
    font-size: 1.1em;
  }

  /* Mobile image, video, button responsiveness */
  .page-vip-services img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure images take full width of their containers */
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-services video,
  .page-vip-services__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all containers for images/videos/buttons adapt */
  .page-vip-services__section,
  .page-vip-services__card,
  .page-vip-services__container,
  .page-vip-services__hero-section,
  .page-vip-services__benefits-section,
  .page-vip-services__tiers-section,
  .page-vip-services__how-to-join-section,
  .page-vip-services__testimonial-section,
  .page-vip-services__faq-section,
  .page-vip-services__cta-final,
  .page-vip-services__hero-cta-buttons,
  .page-vip-services__cta-buttons,
  .page-vip-services__join-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-vip-services__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Apply header offset */
  }

  /* Specific button styles for mobile to ensure no overflow */
  .page-vip-services__btn-primary, .page-vip-services__btn-secondary,
  .page-vip-services a[class*="button"], .page-vip-services a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-services__hero-cta-buttons, .page-vip-services__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-vip-services__hero-section {
    height: 500px;
  }

  .page-vip-services__hero-title {
    font-size: 1.8em;
  }

  .page-vip-services__hero-description {
    font-size: 0.9em;
  }

  .page-vip-services__section-title {
    font-size: 1.5em;
  }

  .page-vip-services__quote-text {
    font-size: 1.1em;
  }

  .page-vip-services__step-number {
    font-size: 2.5em;
  }
}