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

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

.page-promotions-vip-program .hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5C9B);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions-vip-program .cta-group .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-vip-program .cta-group .btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-promotions-vip-program .cta-group .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-promotions-vip-program .cta-group .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-promotions-vip-program .section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-promotions-vip-program .vip-introduction-section, 
.page-promotions-vip-program .vip-tiers-section, 
.page-promotions-vip-program .upgrade-conditions-section, 
.page-promotions-vip-program .exclusive-benefits-section, 
.page-promotions-vip-program .how-to-join-section, 
.page-promotions-vip-program .faq-section {
  padding: 60px 0;
}

.page-promotions-vip-program .vip-introduction-section {
  background-color: #f9f9f9;
}

.page-promotions-vip-program .vip-introduction-section p {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555;
}

.page-promotions-vip-program .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-vip-program .tier-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program .tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program .tier-card h3 {
  color: #0A2463;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-vip-program .tier-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

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

.page-promotions-vip-program .tier-card ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-program .upgrade-conditions-section {
  background-color: #f0f4f8;
  text-align: center;
}

.page-promotions-vip-program .upgrade-conditions-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #555;
}

.page-promotions-vip-program .upgrade-conditions-section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.page-promotions-vip-program .upgrade-conditions-section ul li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-promotions-vip-program .upgrade-conditions-section ul li strong {
  color: #0A2463;
}

.page-promotions-vip-program .exclusive-benefits-section {
  background-color: #fff;
}

.page-promotions-vip-program .benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fcfcfc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promotions-vip-program .benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program .benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #0A2463;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program .benefit-item h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 5px;
}

.page-promotions-vip-program .benefit-item p {
  color: #666;
  font-size: 1.05em;
}

.page-promotions-vip-program .how-to-join-section {
  background-color: #e6eef5;
  text-align: center;
}

.page-promotions-vip-program .how-to-join-section ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-vip-program .how-to-join-section ol li {
  counter-increment: my-awesome-counter;
  background-color: #fff;
  padding: 20px 25px 20px 60px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  font-size: 1.1em;
  color: #333;
}

.page-promotions-vip-program .how-to-join-section ol li::before {
  content: counter(my-awesome-counter);
  background-color: #FFD700;
  color: #0A2463;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program .btn-lg {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

.page-promotions-vip-program .faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-promotions-vip-program .faq-item h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions-vip-program .faq-item p {
  color: #555;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-program .hero-section h1 {
    font-size: 2.8em;
  }
  .page-promotions-vip-program .section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program .tier-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-vip-program .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-vip-program .benefit-icon {
    margin: 0 auto 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program .hero-section {
    padding: 80px 0;
  }
  .page-promotions-vip-program .hero-section h1 {
    font-size: 2.2em;
  }
  .page-promotions-vip-program .hero-section p {
    font-size: 1em;
  }
  .page-promotions-vip-program .cta-group .btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program .vip-introduction-section, 
  .page-promotions-vip-program .vip-tiers-section, 
  .page-promotions-vip-program .upgrade-conditions-section, 
  .page-promotions-vip-program .exclusive-benefits-section, 
  .page-promotions-vip-program .how-to-join-section, 
  .page-promotions-vip-program .faq-section {
    padding: 40px 0;
  }
  .page-promotions-vip-program .tier-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program .how-to-join-section ol li {
    padding: 15px 15px 15px 50px;
  }
  .page-promotions-vip-program .how-to-join-section ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program .hero-section h1 {
    font-size: 1.8em;
  }
  .page-promotions-vip-program .cta-group {
    flex-direction: column;
  }
  .page-promotions-vip-program .cta-group .btn {
    width: 100%;
    margin: 5px 0;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program .benefit-item h3 {
    font-size: 1.3em;
  }
  .page-promotions-vip-program .benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

/* Ensure link colors have good contrast */
.page-promotions-vip-program a {
  color: #0A2463; /* Dark blue for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-vip-program a:hover {
  color: #FFD700; /* Gold on hover */
  text-decoration: underline;
}

/* Specific link styles for contrast */
.page-promotions-vip-program .hero-section a {
  color: #FFD700;
}

.page-promotions-vip-program .hero-section a:hover {
  color: #fff;
}

.page-promotions-vip-program .section-title a, 
.page-promotions-vip-program .tier-card a, 
.page-promotions-vip-program .upgrade-conditions-section a, 
.page-promotions-vip-program .exclusive-benefits-section a, 
.page-promotions-vip-program .how-to-join-section a, 
.page-promotions-vip-program .faq-item a {
  color: #0A2463;
  font-weight: bold;
}

.page-promotions-vip-program .section-title a:hover, 
.page-promotions-vip-program .tier-card a:hover, 
.page-promotions-vip-program .upgrade-conditions-section a:hover, 
.page-promotions-vip-program .exclusive-benefits-section a:hover, 
.page-promotions-vip-program .how-to-join-section a:hover, 
.page-promotions-vip-program .faq-item a:hover {
  color: #FFD700;
}