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

.page-vip-zone__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Ensures hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-vip-zone__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(10, 36, 99, 0.85); /* Main color with transparency */
  border-radius: 15px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-zone__hero-title {
  font-size: 3.2em;
  color: #E3B505; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-zone__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-vip-zone__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;
  white-space: nowrap;
}

.page-vip-zone__button--primary {
  background-color: #E3B505; /* Accent color */
  color: #0A2463; /* Main color */
  border: 2px solid #E3B505;
}

.page-vip-zone__button--primary:hover {
  background-color: #f5db9c; /* Lighter accent */
  transform: translateY(-3px);
}

.page-vip-zone__button--secondary {
  background-color: transparent;
  color: #E3B505; /* Accent color */
  border: 2px solid #E3B505;
}

.page-vip-zone__button--secondary:hover {
  background-color: rgba(227, 181, 5, 0.1);
  transform: translateY(-3px);
}

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

.page-vip-zone__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-vip-zone__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B505; /* Accent color */
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-vip-zone__benefits-grid, .page-vip-zone__tiers-grid, .page-vip-zone__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-vip-zone__benefit-card, .page-vip-zone__tier-card, .page-vip-zone__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-zone__benefit-card:hover, .page-vip-zone__tier-card:hover, .page-vip-zone__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-vip-zone__benefit-icon {
  width: 250px; /* Ensure images are not small icons */
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-zone__benefit-title, .page-vip-zone__tier-title, .page-vip-zone__step-title {
  font-size: 1.8em;
  color: #0A2463; /* Main color */
  margin-bottom: 15px;
}

.page-vip-zone__benefit-description, .page-vip-zone__tier-description, .page-vip-zone__step-description {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
}

.page-vip-zone__tier-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.page-vip-zone__tier-features li {
  background-color: #f9f9f9;
  border-left: 3px solid #E3B505; /* Accent color */
  padding: 10px 15px;
  margin-bottom: 8px;
  color: #333333;
  font-size: 0.95em;
}

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

.page-vip-zone__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #E3B505; /* Accent color */
  background-color: #0A2463; /* Main color */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-zone__faq-section {
  background-color: #f7f7f7;
  padding: 60px 0;
}

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

.page-vip-zone__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-vip-zone__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-vip-zone__faq-question {
  font-size: 1.3em;
  color: #0A2463; /* Main color */
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-vip-zone__faq-item--active .page-vip-zone__faq-question::after {
  transform: rotate(45deg);
}

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

.page-vip-zone__faq-item--active .page-vip-zone__faq-answer {
  max-height: 500px; /* Arbitrary large value to allow content to expand */
  opacity: 1;
  margin-top: 15px;
}

.page-vip-zone__contact-cta-section {
  background-color: #0A2463; /* Main color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-vip-zone__contact-cta-section .page-vip-zone__section-title {
  color: #E3B505; /* Accent color */
}

.page-vip-zone__contact-cta-section .page-vip-zone__section-title::after {
  background-color: #E3B505;
}

.page-vip-zone__contact-cta-section .page-vip-zone__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-zone__contact-cta-section .page-vip-zone__button--primary {
  background-color: #E3B505;
  color: #0A2463;
  border-color: #E3B505;
}

.page-vip-zone__contact-cta-section .page-vip-zone__button--primary:hover {
  background-color: #f5db9c;
}

/* Ensure all content area images are not small icons */
.page-vip-zone img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-zone__hero-title {
    font-size: 2.2em;
  }

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

  .page-vip-zone__hero-content {
    padding: 25px;
  }

  .page-vip-zone__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-vip-zone__benefits-grid, .page-vip-zone__tiers-grid, .page-vip-zone__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-zone__benefit-icon {
    width: 200px;
    height: 150px;
  }

  /* Mobile specific image resizing */
  .page-vip-zone img {
    max-width: 100%;
    height: auto;
  }

  .page-vip-zone__faq-question {
    font-size: 1.1em;
  }

  .page-vip-zone__hero-section {
    min-height: 400px;
  }
}