.page-promotions-vip-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Light text on dark background */
  background-color: #001a33; /* Darker blue background */
  line-height: 1.6;
}

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

.page-promotions-vip-exclusive-offers__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-offers__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,luxury,dark]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-vip-exclusive-offers__hero .page-promotions-vip-exclusive-offers__container {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-exclusive-offers__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-vip-exclusive-offers__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions-vip-exclusive-offers__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

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

.page-promotions-vip-exclusive-offers__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #cccccc;
}

.page-promotions-vip-exclusive-offers__button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for buttons */
  color: #003366; /* Main color for button text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions-vip-exclusive-offers__button.--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions-vip-exclusive-offers__button.--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-vip-exclusive-offers__benefits, .page-promotions-vip-exclusive-offers__tiers, .page-promotions-vip-exclusive-offers__exclusive-offers, .page-promotions-vip-exclusive-offers__how-to-join, .page-promotions-vip-exclusive-offers__faq, .page-promotions-vip-exclusive-offers__cta-final {
  padding: 80px 0;
  background-color: #002244; /* Slightly lighter dark blue for sections */
  margin-top: 20px;
}

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

.page-promotions-vip-exclusive-offers__benefit-item, .page-promotions-vip-exclusive-offers__tier-card, .page-promotions-vip-exclusive-offers__offer-card, .page-promotions-vip-exclusive-offers__step-item {
  background-color: #003366; /* Main color for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-vip-exclusive-offers__benefit-item:hover, .page-promotions-vip-exclusive-offers__tier-card:hover, .page-promotions-vip-exclusive-offers__offer-card:hover, .page-promotions-vip-exclusive-offers__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-exclusive-offers__benefit-icon, .page-promotions-vip-exclusive-offers__tier-icon, .page-promotions-vip-exclusive-offers__step-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-promotions-vip-exclusive-offers__benefit-item h3, .page-promotions-vip-exclusive-offers__tier-card h3, .page-promotions-vip-exclusive-offers__offer-card h4 {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers__benefit-item p, .page-promotions-vip-exclusive-offers__tier-card ul, .page-promotions-vip-exclusive-offers__offer-card p {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__tier-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-vip-exclusive-offers__tier-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-promotions-vip-exclusive-offers__tier-card ul li::before {
  content: '✔';
  color: #FFCC00;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-vip-exclusive-offers__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #cccccc;
}

.page-promotions-vip-exclusive-offers__offer-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__how-to-join {
  background-color: #001a33;
}

.page-promotions-vip-exclusive-offers__step-item {
  background-color: #003366;
  padding: 40px;
}

.page-promotions-vip-exclusive-offers__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers__step-item h3 {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-offers__step-item p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-offers__cta-text {
  font-size: 1.3em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  color: #FFCC00;
  font-weight: bold;
}

.page-promotions-vip-exclusive-offers__faq {
  background-color: #002244;
}

.page-promotions-vip-exclusive-offers__faq-item {
  background-color: #003366;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive-offers__faq-item h3 {
  color: #FFCC00;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

.page-promotions-vip-exclusive-offers__faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-promotions-vip-exclusive-offers__faq-item p {
  color: #e0e0e0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promotions-vip-exclusive-offers__faq-item.active p {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

.page-promotions-vip-exclusive-offers__cta-final {
  background: linear-gradient(45deg, #003366, #001a33);
  text-align: center;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-offers__title {
    font-size: 2.5em;
  }

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

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

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

  .page-promotions-vip-exclusive-offers__benefits-grid, .page-promotions-vip-exclusive-offers__tiers-grid, .page-promotions-vip-exclusive-offers__offers-grid, .page-promotions-vip-exclusive-offers__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-exclusive-offers__hero, .page-promotions-vip-exclusive-offers__benefits, .page-promotions-vip-exclusive-offers__tiers, .page-promotions-vip-exclusive-offers__exclusive-offers, .page-promotions-vip-exclusive-offers__how-to-join, .page-promotions-vip-exclusive-offers__faq, .page-promotions-vip-exclusive-offers__cta-final {
    padding: 60px 0;
  }
}

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

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

  .page-promotions-vip-exclusive-offers__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-offers__button.--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-vip-exclusive-offers__section-title {
    font-size: 1.8em;
  }
}