.page-vip-program-levels {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-vip-program-levels__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-vip-program-levels__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.page-vip-program-levels__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9; /* Default aspect ratio for hero */
  object-fit: cover;
  object-position: center;
}

.page-vip-program-levels__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-vip-program-levels__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-vip-program-levels__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program-levels__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program-levels__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program-levels__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-vip-program-levels__section-description {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.page-vip-program-levels__levels-overview {
  padding: 40px 0;
}

.page-vip-program-levels__level-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-vip-program-levels__level-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-program-levels__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-program-levels__level-card-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.page-vip-program-levels__level-card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-vip-program-levels__level-card-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-program-levels__level-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-vip-program-levels__level-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232AD16F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #F2FFF6;
  font-size: 0.9rem;
}

.page-vip-program-levels__level-card-button {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push to bottom */
}

.page-vip-program-levels__level-card-button:hover {
  background-color: #11A84E; /* Main color */
}

.page-vip-program-levels__benefits-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-vip-program-levels__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-vip-program-levels__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-vip-program-levels__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

.page-vip-program-levels__benefit-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-vip-program-levels__benefit-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-vip-program-levels__faq-section {
  padding: 60px 0;
}

.page-vip-program-levels__faq-list {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.page-vip-program-levels__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E;
}

.page-vip-program-levels__faq-question {
  font-size: 1.15rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-vip-program-levels__faq-answer {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-vip-program-levels__faq-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 25px;
  border-radius: 8px;
  background: #11A84E; /* Main color */
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.page-vip-program-levels__faq-button:hover {
  background-color: #22C768; /* Auxiliary color */
}

.page-vip-program-levels__cta-bottom-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 15px;
  text-align: center;
}

.page-vip-program-levels__cta-button--large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-vip-program-levels__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-vip-program-levels__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-vip-program-levels__level-cards,
  .page-vip-program-levels__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-vip-program-levels__level-card,
  .page-vip-program-levels__benefit-item,
  .page-vip-program-levels__faq-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels__hero-image,
  .page-vip-program-levels__level-card-image,
  .page-vip-program-levels__benefit-icon {
    max-width: 100%;
    height: auto;
  }
  .page-vip-program-levels__hero-section {
    padding-bottom: 30px;
  }
  .page-vip-program-levels__hero-content {
    padding: 0 10px;
  }
  .page-vip-program-levels__cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  .page-vip-program-levels__cta-button--large {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 549px) {
  .page-vip-program-levels__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }
  .page-vip-program-levels__hero-description {
    font-size: 1rem;
  }
  .page-vip-program-levels__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-vip-program-levels__section-description {
    font-size: 0.9rem;
  }
  .page-vip-program-levels__level-card-title {
    font-size: 1.3rem;
  }
  .page-vip-program-levels__benefit-title {
    font-size: 1.15rem;
  }
  .page-vip-program-levels__faq-question {
    font-size: 1.05rem;
  }
  .page-vip-program-levels__faq-answer {
    font-size: 0.9rem;
  }
  .page-vip-program-levels__level-benefits li {
    font-size: 0.85rem;
  }
}