.page-vip-program-levels {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1);
}

.page-vip-program-levels__section {
  padding: 60px 20px;
  text-align: center;
}

.page-vip-program-levels__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-vip-program-levels__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-program-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-vip-program-levels__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A2463, #071a47);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-vip-program-levels__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
  padding: 20px;
}

.page-vip-program-levels__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-program-levels__intro-text {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-vip-program-levels__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-vip-program-levels__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-vip-program-levels__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #FFD700;
}

.page-vip-program-levels__section-title--light {
  color: #FFD700;
}

.page-vip-program-levels__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels__text-block--light {
  color: #f0f0f0;
}

.page-vip-program-levels__overview-section {
  background-color: var(--dark-bg-1);
}

.page-vip-program-levels__levels-structure-section {
  background-color: #0A2463;
}

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

.page-vip-program-levels__level-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

.page-vip-program-levels__level-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px;
  width: 100%; /* Ensure it fills the card width */
}

.page-vip-program-levels__level-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-program-levels__level-description {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-vip-program-levels__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.page-vip-program-levels__level-benefits li {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-vip-program-levels__level-benefits li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-vip-program-levels__benefits-section {
  background-color: var(--dark-bg-1);
}

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

.page-vip-program-levels__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

.page-vip-program-levels__benefit-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px;
  width: 100%;
}

.page-vip-program-levels__benefit-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-program-levels__benefit-description {
  font-size: 15px;
  color: #cccccc;
  flex-grow: 1;
  text-align: left;
}

.page-vip-program-levels__how-to-upgrade-section {
  background-color: #0A2463;
}

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

.page-vip-program-levels__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

.page-vip-program-levels__step-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px;
  width: 100%;
}

.page-vip-program-levels__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-program-levels__step-description {
  font-size: 15px;
  color: #cccccc;
  flex-grow: 1;
  text-align: left;
}

.page-vip-program-levels__faq-section {
  background-color: var(--dark-bg-1);
}

.page-vip-program-levels__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-program-levels__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #cccccc;
  text-align: left;
}

.page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 5px 5px;
}

.page-vip-program-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-vip-program-levels__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-vip-program-levels__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-vip-program-levels__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #f0f0f0;
  text-align: left;
}

.page-vip-program-levels__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-vip-program-levels__conclusion-section {
  background-color: #0A2463;
}

.page-vip-program-levels__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-program-levels__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-program-levels__main-title {
    font-size: 42px;
  }
  .page-vip-program-levels__section-title {
    font-size: 32px;
  }
  .page-vip-program-levels__level-card img,
  .page-vip-program-levels__benefit-card img,
  .page-vip-program-levels__step-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-program-levels__hero-section {
    padding-top: 0 !important;
    padding-bottom: 40px;
    min-height: 400px;
  }
  .page-vip-program-levels__hero-content {
    padding: 15px;
  }
  .page-vip-program-levels__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-vip-program-levels__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-vip-program-levels__section {
    padding: 40px 15px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .page-vip-program-levels__container {
    padding: 0;
  }
  .page-vip-program-levels__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-vip-program-levels__text-block {
    font-size: 15px;
    padding: 0 10px;
  }
  .page-vip-program-levels__levels-grid,
  .page-vip-program-levels__benefits-grid,
  .page-vip-program-levels__upgrade-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  .page-vip-program-levels__level-card,
  .page-vip-program-levels__benefit-card,
  .page-vip-program-levels__step-card {
    padding: 20px;
  }
  .page-vip-program-levels__level-title,
  .page-vip-program-levels__benefit-title,
  .page-vip-program-levels__step-title {
    font-size: 20px;
  }
  .page-vip-program-levels__level-description,
  .page-vip-program-levels__benefit-description,
  .page-vip-program-levels__step-description,
  .page-vip-program-levels__level-benefits li {
    font-size: 14px;
  }
  .page-vip-program-levels__level-card img,
  .page-vip-program-levels__benefit-card img,
  .page-vip-program-levels__step-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-program-levels__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-vip-program-levels__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-vip-program-levels__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-vip-program-levels__faq-answer {
    padding: 0 15px;
  }
  .page-vip-program-levels__faq-item.active .page-vip-program-levels__faq-answer {
    padding: 15px !important;
  }
  .page-vip-program-levels__btn-primary {
    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-program-levels__cta-buttons,
  .page-vip-program-levels__button-group,
  .page-vip-program-levels__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}