.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-promotions-vip-program .highlight {
  color: #007bff;
}

.page-promotions-vip-program .keyword {
  font-weight: bold;
}

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

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-content {
  position: relative;
  z-index: 2;
}

.page-promotions-vip-program__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-promotions-vip-program__main-title .highlight {
  color: #ffc107; /* A contrasting color for highlights in hero */
}

.page-promotions-vip-program__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-vip-program__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-promotions-vip-program__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  opacity: 0.2;
}

.page-promotions-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-vip-program__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-promotions-vip-program__section:nth-of-type(even) {
  background-color: #f0f8ff;
}

.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-vip-program__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #28a745;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-program__sub-section-title {
  font-size: 2em;
  color: #0056b3;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-promotions-vip-program__text {
  font-size: 1.1em;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-vip-program__feature-item {
  text-align: center;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.page-promotions-vip-program__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-promotions-vip-program__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-vip-program__feature-text {
  color: #666;
  font-size: 1em;
}

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

.page-promotions-vip-program__level-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #007bff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions-vip-program__level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #28a745);
  transition: height 0.3s ease;
}

.page-promotions-vip-program__level-card:hover::before {
  height: 10px;
}

.page-promotions-vip-program__level-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

.page-promotions-vip-program__level-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-vip-program__level-description {
  color: #666;
  font-size: 1em;
}

.page-promotions-vip-program__exclusive-benefits .page-promotions-vip-program__benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #007bff;
}

.page-promotions-vip-program__exclusive-benefits .page-promotions-vip-program__benefit-item:nth-child(even) {
  border-left-color: #28a745;
}

.page-promotions-vip-program__benefit-icon {
  width: 70px;
  height: 70px;
  margin-right: 25px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 123, 255, 0.2));
}

.page-promotions-vip-program__benefit-item:nth-child(even) .page-promotions-vip-program__benefit-icon {
  filter: drop-shadow(0 3px 6px rgba(40, 167, 69, 0.2));
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-item:nth-child(even) .page-promotions-vip-program__benefit-title {
  color: #28a745;
}

.page-promotions-vip-program__benefit-description {
  color: #555;
  font-size: 1.05em;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
  border-left: 5px solid #007bff;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  background-color: #28a745;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.page-promotions-vip-program__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-vip-program__step-description {
  color: #555;
  font-size: 1.05em;
}

.page-promotions-vip-program__process-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-vip-program__faq-item {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-vip-program__faq-question {
  font-size: 1.4em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #eaf6ff;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #28a745;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-program__faq-question:hover {
  background-color: #e0f0ff;
}

.page-promotions-vip-program__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fff;
}

.page-promotions-vip-program__faq-answer p {
  margin: 20px 0;
  color: #555;
  font-size: 1.05em;
}

.page-promotions-vip-program__faq-image {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program__cta-final {
  background: linear-gradient(135deg, #28a745 0%, #007bff 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-vip-program__cta-button--bottom {
  background-color: #ffc107;
  color: #333;
}

.page-promotions-vip-program__cta-button--bottom:hover {
  background-color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-program__main-title {
    font-size: 2.8em;
  }

  .page-promotions-vip-program__subtitle,
  .page-promotions-vip-program__cta-description {
    font-size: 1.3em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-program__sub-section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__feature-grid,
  .page-promotions-vip-program__levels-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    padding: 60px 0;
  }

  .page-promotions-vip-program__main-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-program__subtitle {
    font-size: 1.1em;
  }

  .page-promotions-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-promotions-vip-program__section {
    padding: 40px 0;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__text {
    font-size: 1em;
  }

  .page-promotions-vip-program__feature-grid,
  .page-promotions-vip-program__levels-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__exclusive-benefits .page-promotions-vip-program__benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .page-promotions-vip-program__benefit-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions-vip-program__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-promotions-vip-program__faq-answer p {
    font-size: 0.95em;
  }

  .page-promotions-vip-program__cta-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-program__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__main-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__subtitle {
    font-size: 0.95em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.6em;
  }

  .page-promotions-vip-program__sub-section-title {
    font-size: 1.4em;
  }

  .page-promotions-vip-program__feature-icon,
  .page-promotions-vip-program__level-icon {
    width: 60px;
    height: 60px;
  }

  .page-promotions-vip-program__feature-title,
  .page-promotions-vip-program__level-title,
  .page-promotions-vip-program__benefit-title,
  .page-promotions-vip-program__step-title {
    font-size: 1.4em;
  }

  .page-promotions-vip-program__cta-title {
    font-size: 1.8em;
  }
}