.page-vip-program {
  background-color: #F5F7FA; /* Background */
  color: #333333; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
  box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
  overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

.page-vip-program__hero-section {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  background-color: #0a0909; /* Deep red/dark background for hero section */
  padding: 0 0 40px 0; /* Padding at the bottom for content, top is handled by body padding-top */
  overflow: hidden;
}

.page-vip-program__hero-image-wrapper {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* No color filters */
}

.page-vip-program__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 15px;
  color: #FFFFFF; /* White text on dark background */
}

.page-vip-program__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FF5A4F; /* Accent color for main title */
  margin-bottom: 15px;
  /* Use clamp for responsive font size */
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); /* Adjusted for VIP page, not too large */
}

.page-vip-program__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__cta-button,
.page-vip-program__learn-more-button,
.page-vip-program__step-button,
.page-vip-program__final-cta-button,
.page-vip-program__contact-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #FFFFFF; /* White text on buttons */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-vip-program__cta-button:hover,
.page-vip-program__learn-more-button:hover,
.page-vip-program__step-button:hover,
.page-vip-program__final-cta-button:hover,
.page-vip-program__contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-vip-program__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #E53935; /* Main color for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 15px 10px;
  position: relative;
}

.page-vip-program__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FF5A4F; /* Accent color for underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-vip-program__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 15px;
  font-size: 1.05rem;
  color: #333333; /* Text Main */
}

/* Benefits Section */
.page-vip-program__benefits-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-vip-program__benefit-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.page-vip-program__benefit-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Minimum width for content images */
  min-height: 200px; /* Minimum height for content images */
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* No color filters */
}

.page-vip-program__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #E53935; /* Main color */
  margin-bottom: 10px;
}

.page-vip-program__card-description {
  font-size: 0.95rem;
  color: #333333; /* Text Main */
}

/* Tiers Section */
.page-vip-program__tiers-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-vip-program__tiers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-vip-program__tier-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-program__tier-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E53935; /* Main color */
  margin-bottom: 15px;
}

.page-vip-program__tier-description {
  font-size: 0.95rem;
  color: #333333; /* Text Main */
}

/* Join Section */
.page-vip-program__join-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

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

.page-vip-program__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  border-top: 5px solid #FF5A4F; /* Accent color for top border */
}

.page-vip-program__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #E53935; /* Main color */
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin: -55px auto 20px; /* Position above card */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-program__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #E53935; /* Main color */
  margin-bottom: 15px;
}

.page-vip-program__step-description {
  font-size: 0.95rem;
  color: #333333; /* Text Main */
  margin-bottom: 25px;
}

.page-vip-program__cta-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333; /* Text Main */
  margin-bottom: 30px;
}

/* FAQ Section */
.page-vip-program__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-vip-program__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-vip-program__faq-question {
  font-size: 1.15rem;
  font-weight: bold;
  color: #E53935; /* Main color */
  margin-bottom: 10px;
}

.page-vip-program__faq-answer {
  font-size: 0.95rem;
  color: #333333; /* Text Main */
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-program__hero-content {
    padding: 15px;
  }

  .page-vip-program__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-vip-program__description {
    font-size: 1rem;
  }

  .page-vip-program__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 20px;
  }

  .page-vip-program__cta-button,
  .page-vip-program__learn-more-button,
  .page-vip-program__step-button,
  .page-vip-program__final-cta-button,
  .page-vip-program__contact-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-vip-program__benefits-grid,
  .page-vip-program__tiers-list,
  .page-vip-program__join-steps {
    grid-template-columns: 1fr; /* Single column layout on mobile */
    gap: 20px;
  }

  .page-vip-program__benefit-card img {
    max-width: 100%; /* Ensure images don't overflow */
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px;
    height: auto;
  }

  .page-vip-program__step-number {
    margin: -50px auto 15px;
  }

  .page-vip-program__faq-question {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .page-vip-program__hero-section {
    padding-bottom: 30px;
  }

  .page-vip-program__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-vip-program__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-vip-program__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    margin: -45px auto 10px;
  }
}

/* Content area images CSS dimensions check */
/* All images within .page-vip-program must be at least 200px */
.page-vip-program img {
  max-width: 100%;
  height: auto;
  /* Ensure content images meet minimum size requirements */
  /* This rule applies to all img tags selected by .page-vip-program */
  /* CSS should not override these to smaller values, only make them responsive */
}

/* Specific overrides to ensure min-size for relevant images */
.page-vip-program__benefit-card img {
    min-width: 200px;
    min-height: 200px;
}