.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A203C; /* Main background color */
}

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

.page-promotions-vip-program .highlight {
  color: #FFD700; /* Auxiliary color for highlights */
}

.page-promotions-vip-program .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions-vip-program .btn-primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A203C; /* Main color for text */
}

.page-promotions-vip-program .btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
}

.page-promotions-vip-program .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-promotions-vip-program .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A203C;
}

.page-promotions-vip-program .btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-promotions-vip-program .btn-outline:hover {
  background-color: #FFD700;
  color: #0A203C;
}

.page-promotions-vip-program .hero-section {
  background: linear-gradient(135deg, #0A203C 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program .hero-content {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program .hero-title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-vip-program .hero-subtitle {
  font-size: 1.5em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program .intro-section,
.page-promotions-vip-program tiers-section,
.page-promotions-vip-program how-to-join-section,
.page-promotions-vip-program faq-section,
.page-promotions-vip-program cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-vip-program .section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-promotions-vip-program .section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

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

.page-promotions-vip-program .feature-item {
  background-color: #1a3a60; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions-vip-program .feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-program .feature-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.5;
}

.page-promotions-vip-program .tiers-section {
  background-color: #0A203C;
}

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

.page-promotions-vip-program .tier-card {
  background-color: #1a3a60;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a4c78;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-vip-program .tier-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
}

.page-promotions-vip-program .tier-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-vip-program .tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-promotions-vip-program .tier-benefits li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #E0E0E0;
  position: relative;
  padding-left: 25px;
}

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

.page-promotions-vip-program .how-to-join-section {
  background-color: #0A203C;
}

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

.page-promotions-vip-program .step-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-vip-program .step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A203C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-vip-program .step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-program .step-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions-vip-program .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-promotions-vip-program .action-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-top: 50px;
}

.page-promotions-vip-program .link-call-to-action {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-vip-program .link-call-to-action:hover {
  text-decoration: underline;
}

.page-promotions-vip-program .faq-section {
  background-color: #1a3a60;
}

.page-promotions-vip-program .faq-accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promotions-vip-program .accordion-item {
  background-color: #0A203C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program .accordion-header {
  background-color: #2a4c78; /* Slightly lighter dark blue for header */
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program .accordion-header:hover {
  background-color: #3a5c8c;
}

.page-promotions-vip-program .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-program .accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-vip-program .accordion-content.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-promotions-vip-program .accordion-content p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
}

.page-promotions-vip-program .cta-bottom-section {
  background: linear-gradient(135deg, #1a3a60 0%, #0A203C 100%);
  padding: 80px 0;
}

.page-promotions-vip-program .cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promotions-vip-program .cta-description {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-vip-program .hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program .section-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program .cta-title {
    font-size: 2.5em;
  }
  .page-promotions-vip-program .tier-card-grid,
  .page-promotions-vip-program .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program .hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program .section-description {
    font-size: 0.95em;
  }
  .page-promotions-vip-program .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-vip-program .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-promotions-vip-program .cta-title {
    font-size: 2em;
  }
  .page-promotions-vip-program .cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .page-promotions-vip-program .hero-section,
  .page-promotions-vip-program .intro-section,
  .page-promotions-vip-program tiers-section,
  .page-promotions-vip-program how-to-join-section,
  .page-promotions-vip-program faq-section,
  .page-promotions-vip-program cta-bottom-section {
    padding: 50px 0;
  }
  .page-promotions-vip-program .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program .hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-program .btn-primary,
  .page-promotions-vip-program .btn-secondary {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program .feature-item,
  .page-promotions-vip-program .tier-card,
  .page-promotions-vip-program .step-item {
    padding: 20px;
  }
  .page-promotions-vip-program .accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-vip-program .accordion-content {
    padding: 15px 20px;
  }
}