.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0d123d; /* Darker variant of #1A237E for main background */
}

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

.page-promotions-vip-program__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-vip-program__section:nth-of-type(odd) {
  background-color: #1A237E; /* Main color for alternating sections */
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__section-description {
  font-size: 1.1em;
  color: #B0BEC5; /* Lighter grey for descriptions */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #0d123d 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
  padding: 0 20px;
}

.page-promotions-vip-program__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

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

.page-promotions-vip-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-program__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  color: #0d123d;
}

.page-promotions-vip-program__hero-image-container {
  position: absolute;
  bottom: -20px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 500px; /* Example size */
  height: auto;
  opacity: 0.3;
  z-index: 0;
}

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

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

.page-promotions-vip-program__benefit-item {
  background-color: #263238; /* Dark grey background for benefit items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-vip-program__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-vip-program__benefit-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-item p {
  color: #B0BEC5;
  font-size: 0.95em;
}

.page-promotions-vip-program__vip-levels {
  background-color: #0d123d;
}

.page-promotions-vip-program__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.page-promotions-vip-program__tab-button {
  background-color: #263238;
  color: #B0BEC5;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  outline: none;
}

.page-promotions-vip-program__tab-button:hover {
  background-color: #37474F;
  color: #FFD700;
}

.page-promotions-vip-program__tab-button--active {
  background-color: #FFD700;
  color: #1A237E;
  font-weight: bold;
}

.page-promotions-vip-program__tab-button--active:hover {
  background-color: #e5c100;
  color: #0d123d;
}

.page-promotions-vip-program__tab-content {
  background-color: #1A237E;
  padding: 40px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: none;
}

.page-promotions-vip-program__tab-content--active {
  display: block;
}

.page-promotions-vip-program__tab-content h3 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-vip-program__tab-content h4 {
  font-size: 1.4em;
  color: #CFD8DC;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-promotions-vip-program__tab-content p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-promotions-vip-program__tab-content ul {
  list-style: disc inside;
  color: #E0E0E0;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__tab-content ul li {
  margin-bottom: 8px;
  color: #B0BEC5;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li {
  background-color: #263238;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A237E;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li p {
  color: #B0BEC5;
  margin-bottom: 0;
}

.page-promotions-vip-program__note {
  color: #CFD8DC;
  font-style: italic;
  margin-top: 30px;
}

.page-promotions-vip-program__faq-item {
  background-color: #263238;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-answer {
  color: #B0BEC5;
  font-size: 1em;
  display: none;
  margin-top: 10px;
}

.page-promotions-vip-program__faq-answer.active {
  display: block;
}

.page-promotions-vip-program__cta-final {
  background-color: #1A237E;
  padding: 80px 0;
}

.page-promotions-vip-program__cta-content {
  max-width: 900px;
}

.page-promotions-vip-program__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-vip-program__cta-button--primary {
  background-color: #FFD700;
  color: #1A237E;
}

.page-promotions-vip-program__cta-button--primary:hover {
  background-color: #e5c100;
  color: #0d123d;
}

.page-promotions-vip-program__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-promotions-vip-program__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-program__main-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__hero-image-container {
    width: 400px;
    right: -100px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    padding: 80px 0 20px 0;
  }
  .page-promotions-vip-program__main-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__hero-image-container {
    position: static;
    width: 80%;
    margin: 40px auto 0 auto;
    opacity: 0.6;
  }
  .page-promotions-vip-program__tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .page-promotions-vip-program__tab-button {
    width: 100%;
  }
  .page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li {
    padding-left: 25px;
    text-align: center;
  }
  .page-promotions-vip-program__how-to-join .page-promotions-vip-program__steps-list li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-vip-program__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__main-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-program__benefit-item {
    padding: 20px;
  }
  .page-promotions-vip-program__benefit-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions-vip-program__tab-content {
    padding: 25px;
  }
  .page-promotions-vip-program__tab-content h3 {
    font-size: 1.6em;
  }
  .page-promotions-vip-program__faq-question {
    font-size: 1.1em;
  }
}