.page-promotions-vip-benefits {
  --primary-color: #0056B3;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #003366;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default to light text for body which is dark */
  padding-top: 120px; /* Adjust for fixed header */
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits {
    padding-top: 100px; /* Adjust for fixed header on mobile */
  }
}

.page-promotions-vip-benefits__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-vip-benefits__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

.page-promotions-vip-benefits__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-promotions-vip-benefits__text-block {
  font-size: 17px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-promotions-vip-benefits__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #003d7a);
}

.page-promotions-vip-benefits__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-vip-benefits__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-vip-benefits__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions-vip-benefits__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.page-promotions-vip-benefits__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-promotions-vip-benefits__introduction-section {
  padding: 60px 20px;
}

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

.page-promotions-vip-benefits__feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-promotions-vip-benefits__feature-icon {
  width: 120px; 
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-vip-benefits__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions-vip-benefits__feature-card p {
  font-size: 16px;
  color: #555;
}

/* Privileges Section */
.page-promotions-vip-benefits__privileges-section {
  padding: 60px 20px;
}

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

.page-promotions-vip-benefits__privilege-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions-vip-benefits__privilege-image {
  width: 150px; 
  height: auto;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-promotions-vip-benefits__privilege-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions-vip-benefits__privilege-card p {
  font-size: 16px;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promotions-vip-benefits__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: none;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
}

.page-promotions-vip-benefits__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Promotions Section */
.page-promotions-vip-benefits__promotions-section {
  padding: 60px 20px;
}

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

.page-promotions-vip-benefits__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions-vip-benefits__promo-image {
  width: 150px;
  height: auto;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-promotions-vip-benefits__promo-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions-vip-benefits__promo-card p {
  font-size: 16px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promotions-vip-benefits__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto;
}

.page-promotions-vip-benefits__btn-primary:hover {
  background: #003d7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.page-promotions-vip-benefits__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* News Section */
.page-promotions-vip-benefits__news-section {
  padding: 60px 20px;
}

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

.page-promotions-vip-benefits__news-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

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

.page-promotions-vip-benefits__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-promotions-vip-benefits__news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-promotions-vip-benefits__news-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-vip-benefits__news-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions-vip-benefits__news-excerpt {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__news-date {
  font-size: 14px;
  color: #aaa;
}

.page-promotions-vip-benefits__view-all-news {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-promotions-vip-benefits__faq-section {
  padding: 60px 20px;
}

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

.page-promotions-vip-benefits__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-promotions-vip-benefits__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;
}

.page-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-dark);
}

.page-promotions-vip-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-promotions-vip-benefits__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions-vip-benefits__faq-question:active {
  background: #eeeeee;
}

.page-promotions-vip-benefits__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: inherit;
}

.page-promotions-vip-benefits__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: 40px;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 18px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 32px;
  }
  .page-promotions-vip-benefits__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__hero-section {
    padding: 40px 15px;
  }
  .page-promotions-vip-benefits__hero-title {
    font-size: 32px;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 16px;
  }
  .page-promotions-vip-benefits__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-promotions-vip-benefits__container {
    padding: 30px 15px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-vip-benefits__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-promotions-vip-benefits__features-grid,
  .page-promotions-vip-benefits__privilege-grid,
  .page-promotions-vip-benefits__promo-grid,
  .page-promotions-vip-benefits__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-vip-benefits__feature-card,
  .page-promotions-vip-benefits__privilege-card,
  .page-promotions-vip-benefits__promo-card,
  .page-promotions-vip-benefits__news-card {
    padding: 25px;
  }
  .page-promotions-vip-benefits__feature-title,
  .page-promotions-vip-benefits__privilege-title,
  .page-promotions-vip-benefits__promo-title {
    font-size: 20px;
  }
  .page-promotions-vip-benefits__news-title {
    font-size: 18px;
  }
  .page-promotions-vip-benefits__feature-icon,
  .page-promotions-vip-benefits__privilege-image,
  .page-promotions-vip-benefits__promo-image {
    width: 100px;
  }
  .page-promotions-vip-benefits__btn-primary,
  .page-promotions-vip-benefits__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-promotions-vip-benefits__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-promotions-vip-benefits__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-promotions-vip-benefits__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-promotions-vip-benefits__faq-answer {
    padding: 0 15px;
  }
  .page-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-answer {
    padding: 15px !important;
  }
}