.page-promotions-vip-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-promotions-vip-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions-vip-benefits__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-promotions-vip-benefits__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent light background for cards on dark sections */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promotions-vip-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #E53E3E; /* Accent color for titles */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-vip-benefits__call-to-action-text {
  font-size: 20px;
  color: #E53E3E;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.page-promotions-vip-benefits__margin-top {
    margin-top: 30px;
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, #1A202C 0%, #0a0a0a 100%);
  color: #ffffff;
  text-align: center;
}

.page-promotions-vip-benefits__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 12px;
  margin-right: 20px; /* Space for image */
}

.page-promotions-vip-benefits__main-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ECC94B; /* Gold for main title */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-vip-benefits__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-benefits__cta-button--primary {
  background-color: #E53E3E; /* Accent red */
  color: #ffffff;
}

.page-promotions-vip-benefits__cta-button--primary:hover {
  background-color: #c53030;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-benefits__cta-button--secondary {
  background-color: #1A202C; /* Main dark color */
  color: #ECC94B; /* Gold text */
  border: 2px solid #ECC94B;
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
  background-color: #2d3748;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-benefits__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  filter: brightness(0.7);
}

/* Why VIP Section */
.page-promotions-vip-benefits__why-vip-section {
  padding: 80px 0;
}

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

.page-promotions-vip-benefits__feature-title {
  font-size: 24px;
  color: #ECC94B;
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions-vip-benefits__feature-text {
  font-size: 16px;
  color: #cccccc;
  text-align: center;
}

/* VIP Tiers Section */
.page-promotions-vip-benefits__vip-tiers-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

.page-promotions-vip-benefits__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-benefits__tier-card {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid #E53E3E;
}

.page-promotions-vip-benefits__tier-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-promotions-vip-benefits__tier-title {
  font-size: 28px;
  color: #ECC94B;
  margin-bottom: 15px;
}

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

.page-promotions-vip-benefits__tier-benefits li {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-promotions-vip-benefits__tier-benefits li::before {
  content: '✓';
  color: #E53E3E;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-vip-benefits__tier-requirement {
  font-size: 15px;
  color: #999999;
  font-style: italic;
}

/* Exclusive Promos Section */
.page-promotions-vip-benefits__exclusive-promos-section {
  padding: 80px 0;
}

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

.page-promotions-vip-benefits__promo-card {
  text-align: center;
  padding: 20px;
}

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

.page-promotions-vip-benefits__promo-title {
  font-size: 24px;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__promo-text {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-promotions-vip-benefits__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ECC94B;
  color: #1A202C;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-vip-benefits__promo-button:hover {
  background-color: #d6a400;
  transform: translateY(-2px);
}

/* Personalized Service Section */
.page-promotions-vip-benefits__personalized-service-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

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

.page-promotions-vip-benefits__service-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-vip-benefits__service-title {
  font-size: 24px;
  color: #ECC94B;
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__service-text {
  font-size: 16px;
  color: #cccccc;
}

/* How to Join Section */
.page-promotions-vip-benefits__how-to-join-section {
  padding: 80px 0;
}

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

.page-promotions-vip-benefits__step-item {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promotions-vip-benefits__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E53E3E;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  border: 3px solid #1A202C;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__step-title {
  font-size: 24px;
  color: #ECC94B;
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__step-text {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-promotions-vip-benefits__step-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #1A202C;
  color: #ECC94B;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #ECC94B;
}

.page-promotions-vip-benefits__step-button:hover {
  background-color: #2d3748;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-promotions-vip-benefits__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

.page-promotions-vip-benefits__faq-list {
  margin-top: 50px;
}

.page-promotions-vip-benefits__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promotions-vip-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-vip-benefits__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-promotions-vip-benefits__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ECC94B;
  pointer-events: none;
}

.page-promotions-vip-benefits__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E53E3E;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-toggle {
  color: #ECC94B;
  transform: rotate(45deg);
}

.page-promotions-vip-benefits__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

.page-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
}

.page-promotions-vip-benefits__faq-answer p {
    margin-bottom: 10px;
    color: #cccccc;
}

.page-promotions-vip-benefits__faq-answer a {
    color: #E53E3E;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-vip-benefits__faq-answer a:hover {
    text-decoration: underline;
}

.page-promotions-vip-benefits__faq-app-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E53E3E;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-promotions-vip-benefits__faq-app-button:hover {
    background-color: #c53030;
}

/* Brand Section */
.page-promotions-vip-benefits__brand-section {
  padding: 80px 0;
}

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

.page-promotions-vip-benefits__brand-item {
  text-align: center;
}

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

.page-promotions-vip-benefits__brand-title-small {
  font-size: 24px;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__brand-text {
  font-size: 16px;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-vip-benefits__main-title {
    font-size: 48px;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 20px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 32px;
  }
  .page-promotions-vip-benefits__section-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-vip-benefits__hero-section {
    flex-direction: column;
    min-height: auto;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-vip-benefits__hero-content {
    margin-right: 0;
    padding: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-promotions-vip-benefits__main-title {
    font-size: 36px;
  }

  .page-promotions-vip-benefits__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .page-promotions-vip-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-vip-benefits__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 18px;
    box-sizing: border-box !important;
  }

  .page-promotions-vip-benefits__hero-image-wrapper {
    position: relative;
    height: 250px;
    margin-top: 30px;
  }

  .page-promotions-vip-benefits__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

  .page-promotions-vip-benefits__why-vip-section,
  .page-promotions-vip-benefits__vip-tiers-section,
  .page-promotions-vip-benefits__exclusive-promos-section,
  .page-promotions-vip-benefits__personalized-service-section,
  .page-promotions-vip-benefits__how-to-join-section,
  .page-promotions-vip-benefits__faq-section,
  .page-promotions-vip-benefits__brand-section {
    padding: 40px 0;
  }

  .page-promotions-vip-benefits__section-title {
    font-size: 28px;
  }

  .page-promotions-vip-benefits__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions-vip-benefits__features-grid,
  .page-promotions-vip-benefits__tiers-grid,
  .page-promotions-vip-benefits__promos-grid,
  .page-promotions-vip-benefits__service-grid,
  .page-promotions-vip-benefits__steps-grid,
  .page-promotions-vip-benefits__brand-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-vip-benefits__feature-title,
  .page-promotions-vip-benefits__tier-title,
  .page-promotions-vip-benefits__promo-title,
  .page-promotions-vip-benefits__service-title,
  .page-promotions-vip-benefits__step-title,
  .page-promotions-vip-benefits__brand-title-small {
    font-size: 22px;
  }

  .page-promotions-vip-benefits__feature-text,
  .page-promotions-vip-benefits__tier-benefits li,
  .page-promotions-vip-benefits__tier-requirement,
  .page-promotions-vip-benefits__promo-text,
  .page-promotions-vip-benefits__service-text,
  .page-promotions-vip-benefits__step-text,
  .page-promotions-vip-benefits__brand-text {
    font-size: 15px;
  }

  .page-promotions-vip-benefits__tier-image,
  .page-promotions-vip-benefits__promo-image,
  .page-promotions-vip-benefits__service-image,
  .page-promotions-vip-benefits__brand-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

  .page-promotions-vip-benefits__faq-question {
    padding: 15px;
  }

  .page-promotions-vip-benefits__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions-vip-benefits__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-promotions-vip-benefits__faq-item.active .page-promotions-vip-benefits__faq-answer {
    padding: 15px !important;
  }

  .page-promotions-vip-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-benefits__main-title {
    font-size: 32px;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 16px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 24px;
  }
  .page-promotions-vip-benefits__cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-promotions-vip-benefits__call-to-action-text {
    font-size: 18px;
  }
}