.page-promo-vip-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo-vip-exclusive-offers__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  min-height: 500px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-vip-exclusive-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo-vip-exclusive-offers__hero-container {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-promo-vip-exclusive-offers__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-vip-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  line-height: 1.2;
  font-weight: bold;
}

.page-promo-vip-exclusive-offers__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-vip-exclusive-offers__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-vip-exclusive-offers__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo-vip-exclusive-offers__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
}

.page-promo-vip-exclusive-offers__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo-vip-exclusive-offers__cta-button--secondary {
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-promo-vip-exclusive-offers__cta-button--secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-promo-vip-exclusive-offers__section-title {
  font-size: 2.8em;
  color: #000080; /* Dark Blue */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

.page-promo-vip-exclusive-offers__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo-vip-exclusive-offers__benefits-overview-section,
.page-promo-vip-exclusive-offers__vip-tiers-section,
.page-promo-vip-exclusive-offers__how-to-join-section,
.page-promo-vip-exclusive-offers__faq-section {
  padding: 60px 0;
}

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

.page-promo-vip-exclusive-offers__benefit-card,
.page-promo-vip-exclusive-offers__tier-card,
.page-promo-vip-exclusive-offers__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo-vip-exclusive-offers__benefit-card:hover,
.page-promo-vip-exclusive-offers__tier-card:hover,
.page-promo-vip-exclusive-offers__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-vip-exclusive-offers__benefit-icon,
.page-promo-vip-exclusive-offers__tier-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure content images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin: 0 auto 25px auto;
  border-radius: 8px;
}

.page-promo-vip-exclusive-offers__benefit-title,
.page-promo-vip-exclusive-offers__tier-title,
.page-promo-vip-exclusive-offers__step-title {
  font-size: 1.6em;
  color: #000080; /* Dark Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo-vip-exclusive-offers__benefit-text,
.page-promo-vip-exclusive-offers__tier-description,
.page-promo-vip-exclusive-offers__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-vip-exclusive-offers__tier-button,
.page-promo-vip-exclusive-offers__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promo-vip-exclusive-offers__tier-button:hover,
.page-promo-vip-exclusive-offers__step-button:hover {
  background-color: #e6c200;
}

.page-promo-vip-exclusive-offers__step-number {
  width: 50px;
  height: 50px;
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promo-vip-exclusive-offers__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-vip-exclusive-offers__accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo-vip-exclusive-offers__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #000080; /* Dark Blue */
  color: #FFD700; /* Gold */
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo-vip-exclusive-offers__accordion-header:hover {
  background-color: #000066;
}

.page-promo-vip-exclusive-offers__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-vip-exclusive-offers__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-vip-exclusive-offers__accordion-content {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo-vip-exclusive-offers__accordion-content p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.6;
  color: #444444;
}

.page-promo-vip-exclusive-offers__cta-section {
  background-color: #000080; /* Dark Blue */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-promo-vip-exclusive-offers__cta-container {
  max-width: 800px;
}

.page-promo-vip-exclusive-offers__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo-vip-exclusive-offers__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-vip-exclusive-offers__hero-title {
    font-size: 3em;
  }
  .page-promo-vip-exclusive-offers__hero-description {
    font-size: 1.2em;
  }
  .page-promo-vip-exclusive-offers__section-title {
    font-size: 2.2em;
  }
  .page-promo-vip-exclusive-offers__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-vip-exclusive-offers__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-promo-vip-exclusive-offers__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo-vip-exclusive-offers__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo-vip-exclusive-offers__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-vip-exclusive-offers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-vip-exclusive-offers__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-promo-vip-exclusive-offers__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo-vip-exclusive-offers__benefits-grid,
  .page-promo-vip-exclusive-offers__tiers-grid,
  .page-promo-vip-exclusive-offers__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-vip-exclusive-offers__benefit-card,
  .page-promo-vip-exclusive-offers__tier-card,
  .page-promo-vip-exclusive-offers__step-card {
    padding: 25px;
  }
  .page-promo-vip-exclusive-offers__benefit-icon,
  .page-promo-vip-exclusive-offers__tier-image {
    max-width: 300px;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }
  .page-promo-vip-exclusive-offers__benefit-title,
  .page-promo-vip-exclusive-offers__tier-title,
  .page-promo-vip-exclusive-offers__step-title {
    font-size: 1.4em;
  }
  .page-promo-vip-exclusive-offers__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo-vip-exclusive-offers__accordion-content p {
    padding: 10px 0;
  }
  .page-promo-vip-exclusive-offers__cta-section {
    padding: 60px 15px;
  }
  .page-promo-vip-exclusive-offers__cta-title {
    font-size: 1.8em;
  }
  .page-promo-vip-exclusive-offers__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  /* Mobile content area image constraint */
  .page-promo-vip-exclusive-offers img {
    max-width: 100%;
    height: auto;
  }
}