/* style/promotions-vip-exclusive-privileges.css */
.page-promotions-vip-exclusive-privileges {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-promotions-vip-exclusive-privileges__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-privileges__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Accent for title */
}

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

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

.page-promotions-vip-exclusive-privileges__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color for text */
  border: 2px solid #FFCC00;
}

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

.page-promotions-vip-exclusive-privileges__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions-vip-exclusive-privileges__btn--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-3px);
}

.page-promotions-vip-exclusive-privileges__introduction,
.page-promotions-vip-exclusive-privileges__tiers,
.page-promotions-vip-exclusive-privileges__how-to-join,
.page-promotions-vip-exclusive-privileges__faq,
.page-promotions-vip-exclusive-privileges__cta {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-exclusive-privileges__introduction {
  text-align: center;
  background-color: #f0f8ff; /* Light background for contrast */
}

.page-promotions-vip-exclusive-privileges__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-vip-exclusive-privileges__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-promotions-vip-exclusive-privileges__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-promotions-vip-exclusive-privileges__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-exclusive-privileges__tiers {
  background-color: #e6f2ff; /* Another light background for section separation */
}

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

.page-promotions-vip-exclusive-privileges__tier-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366; /* Main color border */
}

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

.page-promotions-vip-exclusive-privileges__tier-title {
  font-size: 1.8em;
  color: #003366; /* Main color */
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-privileges__tier-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-privileges__tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-privileges__tier-benefits li {
  background-color: #f5f5f5;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #555;
  font-size: 0.95em;
  text-align: left;
  position: relative;
  padding-left: 30px;
}

.page-promotions-vip-exclusive-privileges__tier-benefits li::before {
  content: '✔';
  color: #FFCC00; /* Accent color */
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-vip-exclusive-privileges__tier-description {
  font-size: 0.9em;
  color: #777;
  font-style: italic;
}

.page-promotions-vip-exclusive-privileges__note {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 40px;
}

.page-promotions-vip-exclusive-privileges__how-to-join {
  background-color: #fcfcfc;
}

.page-promotions-vip-exclusive-privileges__faq {
  background-color: #f0f8ff;
}

.page-promotions-vip-exclusive-privileges__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: border-color 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__faq-item:hover {
  border-color: #FFCC00;
}

.page-promotions-vip-exclusive-privileges__faq-question {
  font-size: 1.3em;
  color: #003366; /* Main color */
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions-vip-exclusive-privileges__faq-answer {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}

.page-promotions-vip-exclusive-privileges__cta {
  background-color: #003366; /* Main color as background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-vip-exclusive-privileges__cta .page-promotions-vip-exclusive-privileges__section-title {
  color: #FFCC00; /* Accent color for title on dark background */
}

.page-promotions-vip-exclusive-privileges__cta .page-promotions-vip-exclusive-privileges__text-content {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-promotions-vip-exclusive-privileges__hero-subtitle {
    font-size: 1.3em;
  }

  .page-promotions-vip-exclusive-privileges__section-title {
    font-size: 2em;
  }

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

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-privileges__hero {
    padding: 80px 0;
  }

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

  .page-promotions-vip-exclusive-privileges__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-vip-exclusive-privileges__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-promotions-vip-exclusive-privileges__introduction,
  .page-promotions-vip-exclusive-privileges__tiers,
  .page-promotions-vip-exclusive-privileges__how-to-join,
  .page-promotions-vip-exclusive-privileges__faq,
  .page-promotions-vip-exclusive-privileges__cta {
    padding: 40px 0;
  }

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

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

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

  .page-promotions-vip-exclusive-privileges__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-promotions-vip-exclusive-privileges__hero-subtitle {
    font-size: 0.95em;
  }

  .page-promotions-vip-exclusive-privileges__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .page-promotions-vip-exclusive-privileges__faq-item {
    padding: 15px 20px;
  }
}