.page-promo-vip-exclusive {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for general content, assuming a dark background or dark sections. */
  background-color: #1A237E; /* Main brand color for the page background */
}

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

.page-promo-vip-exclusive__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-promo-vip-exclusive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, no color change */
}

.page-promo-vip-exclusive__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo-vip-exclusive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-vip-exclusive__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-vip-exclusive__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #1A237E; /* Main brand color for button text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promo-vip-exclusive__cta-button:hover {
  background-color: #e5c300;
  transform: translateY(-3px);
}

.page-promo-vip-exclusive__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-promo-vip-exclusive__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promo-vip-exclusive__section-intro {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-promo-vip-exclusive__benefits-section,
.page-promo-vip-exclusive__tiers-section,
.page-promo-vip-exclusive__how-to-join-section,
.page-promo-vip-exclusive__faq-section,
.page-promo-vip-exclusive__final-cta-section {
  padding: 60px 0;
}

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

.page-promo-vip-exclusive__benefit-card,
.page-promo-vip-exclusive__tier-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promo-vip-exclusive__benefit-card:hover,
.page-promo-vip-exclusive__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-promo-vip-exclusive__benefit-icon,
.page-promo-vip-exclusive__tier-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-vip-exclusive__card-title,
.page-promo-vip-exclusive__tier-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-vip-exclusive__card-description,
.page-promo-vip-exclusive__tier-description {
  font-size: 1em;
  line-height: 1.7;
  color: #c0c0c0;
}

.page-promo-vip-exclusive__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-vip-exclusive__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.page-promo-vip-exclusive__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-vip-exclusive__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-promo-vip-exclusive__step-button {
  display: inline-block;
  background-color: #1A237E;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-promo-vip-exclusive__step-button:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-promo-vip-exclusive__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promo-vip-exclusive__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo-vip-exclusive__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-vip-exclusive__hero-title {
    font-size: 3em;
  }
  .page-promo-vip-exclusive__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo-vip-exclusive__hero-section {
    padding: 40px 15px; /* Adjust padding for mobile */
  }
  .page-promo-vip-exclusive__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-promo-vip-exclusive__hero-title {
    font-size: 2.5em;
  }
  .page-promo-vip-exclusive__hero-description {
    font-size: 1.1em;
  }
  .page-promo-vip-exclusive__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo-vip-exclusive__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo-vip-exclusive__section-title {
    font-size: 1.8em;
  }
  .page-promo-vip-exclusive__section-intro {
    font-size: 1em;
  }
  .page-promo-vip-exclusive__benefits-grid,
  .page-promo-vip-exclusive__tiers-grid,
  .page-promo-vip-exclusive__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promo-vip-exclusive__benefit-icon,
  .page-promo-vip-exclusive__tier-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  /* Ensure all images within .page-promo-vip-exclusive are responsive and do not cause overflow */
  .page-promo-vip-exclusive img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-vip-exclusive {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo-vip-exclusive__hero-title {
    font-size: 2em;
  }
  .page-promo-vip-exclusive__hero-description {
    font-size: 0.9em;
  }
  .page-promo-vip-exclusive__card-title,
  .page-promo-vip-exclusive__tier-title,
  .page-promo-vip-exclusive__step-title {
    font-size: 1.4em;
  }
  .page-promo-vip-exclusive__faq-question {
    font-size: 1.2em;
  }
}