.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A192F;
}

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

.page-promotions-vip-program__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d5f 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
  line-height: 1.6;
}

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

.page-promotions-vip-program__section:nth-of-type(even) {
  background-color: #1a2a41; /* Slightly lighter dark background for contrast */
}

.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-vip-program__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-vip-program__description {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #CCCCCC;
}

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

.page-promotions-vip-program__benefit-item,
.page-promotions-vip-program__step-item,
.page-promotions-vip-program__commitment-item {
  background-color: #15253a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-vip-program__benefit-icon,
.page-promotions-vip-program__step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(300deg) brightness(1.2); /* Make icons golden */
}

.page-promotions-vip-program__benefit-title,
.page-promotions-vip-program__step-title,
.page-promotions-vip-program__commitment-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-description,
.page-promotions-vip-program__step-description,
.page-promotions-vip-program__commitment-description {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.6;
}

.page-promotions-vip-program__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__image--full-width {
  width: 100%;
}

.page-promotions-vip-program__image--small {
  max-width: 600px;
  margin: 40px auto 0 auto;
  display: block;
}

.page-promotions-vip-program__image--large {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: block;
}

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

.page-promotions-vip-program__tier-card {
  background-color: #15253a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border-top: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions-vip-program__tier-condition {
  font-size: 0.95em;
  color: #AAAAAA;
  margin-bottom: 20px;
}

.page-promotions-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-promotions-vip-program__tier-benefits li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-program__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-promotions-vip-program__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

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

.page-promotions-vip-program__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-promotions-vip-program__button--tertiary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__button--tertiary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

.page-promotions-vip-program__cta-content {
  background-color: #15253a;
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

.page-promotions-vip-program__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero {
    padding: 80px 0;
  }
  .page-promotions-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__benefits-grid,
  .page-promotions-vip-program__steps-grid,
  .page-promotions-vip-program__commitment-grid,
  .page-promotions-vip-program__vip-tiers .page-promotions-vip-program__tier-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__tier-card {
    text-align: center;
  }
  .page-promotions-vip-program__tier-benefits li {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%; /* Adjust for better readability on small screens */
  }
  .page-promotions-vip-program__cta-content {
    padding: 40px 20px;
  }
  .page-promotions-vip-program__button {
    width: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program__faq-question {
    font-size: 1.2em;
  }
}