.page-promotions-vip {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main brand color for background */
  line-height: 1.6;
}

.page-promotions-vip h1, .page-promotions-vip h2, .page-promotions-vip h3, .page-promotions-vip h4 {
  color: #FFD700; /* Accent color for headings */
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-promotions-vip h1 {
  font-size: 2.8rem;
  text-align: center;
}

.page-promotions-vip h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip h3 {
  font-size: 1.8rem;
  color: #FFD700; /* Accent color for subheadings */
}

.page-promotions-vip h4 {
  font-size: 1.4rem;
  color: #FFD700; /* Accent color for smaller headings */
}

.page-promotions-vip p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.page-promotions-vip__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a2a47; /* Slightly lighter dark background for sections */
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #304C74 100%); /* Gradient background for hero */
  color: #FFFFFF;
  margin-bottom: 30px;
  border-radius: 0;
}

.page-promotions-vip__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-promotions-vip__hero-content h1 {
  color: #FFD700;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-promotions-vip__hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #E0E0E0;
}

.page-promotions-vip__hero-image {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

.page-promotions-vip__hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: 10px;
}

.page-promotions-vip__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip__btn--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-vip__benefit-card {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #304C74;
}

.page-promotions-vip__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-vip__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip__benefit-card h3 {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-vip__benefit-card p {
  color: #C0C0C0;
  font-size: 0.95rem;
}

.page-promotions-vip__cta-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #304C74;
}

.page-promotions-vip__cta-bottom p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-vip__vip-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-vip__tier-card {
  background-color: #0A192F;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #304C74;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-vip__tier-card h4 {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-vip__tier-card p {
  color: #C0C0C0;
  font-size: 0.9rem;
}

.page-promotions-vip__how-to-vip h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.page-promotions-vip__commitment h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.page-promotions-vip__faq-item {
  background-color: #0A192F;
  border: 1px solid #304C74;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip__faq-item h3 {
  font-size: 1.25rem;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-vip__faq-item p {
  color: #C0C0C0;
  font-size: 0.95rem;
  margin-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promotions-vip__faq-item.active p {
  display: block;
}

.page-promotions-vip__faq-item h3::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promotions-vip__faq-item.active h3::after {
  content: '-';
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip__hero-content h1 {
    font-size: 2.8rem;
  }
  .page-promotions-vip h2 {
    font-size: 1.8rem;
  }
  .page-promotions-vip__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-vip__vip-tiers {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-vip__tier-card {
    width: 90%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip__hero {
    padding: 60px 15px;
  }
  .page-promotions-vip__hero-content h1 {
    font-size: 2.2rem;
  }
  .page-promotions-vip__hero-content p {
    font-size: 1rem;
  }
  .page-promotions-vip h2 {
    font-size: 1.6rem;
  }
  .page-promotions-vip h3 {
    font-size: 1.4rem;
  }
  .page-promotions-vip__section {
    padding: 30px 15px;
  }
  .page-promotions-vip__btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip__hero-content h1 {
    font-size: 1.8rem;
  }
  .page-promotions-vip h2 {
    font-size: 1.4rem;
  }
  .page-promotions-vip h3 {
    font-size: 1.2rem;
  }
  .page-promotions-vip__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions-vip__cta-bottom .page-promotions-vip__btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}