/* style/promotions-vip-exclusive-benefits.css */
.page-promotions-vip-exclusive-benefits {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #1A2C42;
  line-height: 1.6;
}

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

.page-promotions-vip-exclusive-benefits__hero-section {
  background: linear-gradient(135deg, #1A2C42 0%, #3a4f68 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions-vip-exclusive-benefits__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B147;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #CCCCCC;
}

.page-promotions-vip-exclusive-benefits__cta-button {
  display: inline-block;
  background-color: #E0B147;
  color: #1A2C42;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-exclusive-benefits__cta-button:hover {
  background-color: #f0c96e;
  transform: translateY(-3px);
}

.page-promotions-vip-exclusive-benefits__benefits-overview,
.page-promotions-vip-exclusive-benefits__detailed-benefits,
.page-promotions-vip-exclusive-benefits__faq-section,
.page-promotions-vip-exclusive-benefits__cta-bottom {
  padding: 80px 0;
  background-color: #1A2C42;
  color: #F8F8F8;
}

.page-promotions-vip-exclusive-benefits__section-title {
  font-size: 2.8em;
  color: #E0B147;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-vip-exclusive-benefits__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #CCCCCC;
}

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

.page-promotions-vip-exclusive-benefits__benefit-card {
  background-color: #273E5A; /* Darker blue for cards */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a4f68;
}

.page-promotions-vip-exclusive-benefits__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

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

.page-promotions-vip-exclusive-benefits__card-title {
  font-size: 1.8em;
  color: #E0B147;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__card-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-promotions-vip-exclusive-benefits__detailed-benefits {
  background-color: #162638;
}

.page-promotions-vip-exclusive-benefits__vip-level {
  background-color: #273E5A;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a4f68;
}

.page-promotions-vip-exclusive-benefits__level-title {
  font-size: 2.2em;
  color: #E0B147;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-promotions-vip-exclusive-benefits__level-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 25px;
  text-align: center;
}

.page-promotions-vip-exclusive-benefits__level-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.page-promotions-vip-exclusive-benefits__level-list li {
  background-color: #3a4f68;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #F8F8F8;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive-benefits__level-list li::before {
  content: '✓';
  color: #E0B147;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3em;
}

.page-promotions-vip-exclusive-benefits__how-to-join {
  font-size: 2.5em;
  color: #E0B147;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__faq-section {
  background-color: #1A2C42;
  border-top: 1px solid #3a4f68;
}

.page-promotions-vip-exclusive-benefits__faq-item {
  background-color: #273E5A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a4f68;
}

.page-promotions-vip-exclusive-benefits__faq-question {
  font-size: 1.5em;
  color: #E0B147;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-exclusive-benefits__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-vip-exclusive-benefits__faq-answer {
  font-size: 1.1em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promotions-vip-exclusive-benefits__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
}

.page-promotions-vip-exclusive-benefits__cta-bottom {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #162638;
  border-top: 1px solid #3a4f68;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-exclusive-benefits__main-title {
    font-size: 2.8em;
  }

  .page-promotions-vip-exclusive-benefits__subtitle {
    font-size: 1.2em;
  }

  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-exclusive-benefits__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promotions-vip-exclusive-benefits__vip-level {
    padding: 30px;
  }

  .page-promotions-vip-exclusive-benefits__level-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-benefits__hero-section,
  .page-promotions-vip-exclusive-benefits__benefits-overview,
  .page-promotions-vip-exclusive-benefits__detailed-benefits,
  .page-promotions-vip-exclusive-benefits__faq-section,
  .page-promotions-vip-exclusive-benefits__cta-bottom {
    padding: 60px 0;
  }

  .page-promotions-vip-exclusive-benefits__main-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-exclusive-benefits__subtitle {
    font-size: 1em;
  }

  .page-promotions-vip-exclusive-benefits__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-promotions-vip-exclusive-benefits__text-content {
    font-size: 0.95em;
  }

  .page-promotions-vip-exclusive-benefits__card-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-exclusive-benefits__card-icon {
    width: 60px;
    height: 60px;
  }

  .page-promotions-vip-exclusive-benefits__card-title {
    font-size: 1.5em;
  }

  .page-promotions-vip-exclusive-benefits__level-title {
    font-size: 1.5em;
  }

  .page-promotions-vip-exclusive-benefits__level-list li {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-promotions-vip-exclusive-benefits__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-exclusive-benefits__main-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.5em;
  }

  .page-promotions-vip-exclusive-benefits__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promotions-vip-exclusive-benefits__how-to-join {
    font-size: 1.8em;
  }
}