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

.page-promotions-vip-benefits__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-promotions-vip-benefits__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__hero-content {
  max-width: 800px;
  margin-top: 40px;
  padding: 0 15px;
  box-sizing: border-box;
  z-index: 1;
}

.page-promotions-vip-benefits__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-vip-benefits__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-vip-benefits__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #017439;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions-vip-benefits__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-vip-benefits__card {
  background: rgba(255, 255, 255, 0.1); /* Light background for dark body */
  color: #ffffff; /* Light text for dark body */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-vip-benefits__card-title {
  font-size: 1.6rem;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-benefits__card-text {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__level-benefits {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-promotions-vip-benefits__level-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-promotions-vip-benefits__level-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFFF00; /* Highlight color for checkmark */
  font-weight: bold;
}

.page-promotions-vip-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-vip-benefits__steps-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-benefits__step-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #017439;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions-vip-benefits__steps-list li a {
  color: #FFFF00; /* Link color for steps */
  text-decoration: underline;
}

.page-promotions-vip-benefits__steps-list li a:hover {
  color: #017439;
}

.page-promotions-vip-benefits__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-vip-benefits__faq-item {
  background: rgba(255, 255, 255, 0.08); /* Light background for dark body */
  color: #ffffff; /* Light text for dark body */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-promotions-vip-benefits__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-vip-benefits__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #017439;
  margin-left: 10px;
}

.page-promotions-vip-benefits__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-vip-benefits__faq-answer p {
  margin: 0;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-benefits__btn-primary {
  background-color: #017439;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(1, 116, 57, 0.4);
}

.page-promotions-vip-benefits__btn-primary:hover {
  background-color: #005a2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 116, 57, 0.6);
}

.page-promotions-vip-benefits__btn-secondary {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #C30808;
  box-shadow: 0 5px 15px rgba(195, 8, 8, 0.4);
}

.page-promotions-vip-benefits__btn-secondary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(195, 8, 8, 0.6);
}

.page-promotions-vip-benefits__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-vip-benefits__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast sections */
  color: #ffffff;
}

.highlight {
  color: #FFFF00;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-benefits__main-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .page-promotions-vip-benefits__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-promotions-vip-benefits__main-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .page-promotions-vip-benefits__description {
    font-size: 1rem;
  }

  .page-promotions-vip-benefits__section {
    padding: 60px 0;
  }

  .page-promotions-vip-benefits__container {
    padding: 0 15px;
  }

  .page-promotions-vip-benefits__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions-vip-benefits__text-block {
    font-size: 0.95rem;
  }

  .page-promotions-vip-benefits__levels-grid,
  .page-promotions-vip-benefits__privilege-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-vip-benefits__card {
    padding: 25px;
  }

  .page-promotions-vip-benefits__card-title {
    font-size: 1.4rem;
  }

  .page-promotions-vip-benefits__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-promotions-vip-benefits__steps-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-promotions-vip-benefits__step-number {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .page-promotions-vip-benefits__faq-list {
    margin: 30px auto;
  }

  .page-promotions-vip-benefits__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-promotions-vip-benefits__faq-answer {
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  /* Image responsive adaptations */
  .page-promotions-vip-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-vip-benefits__section,
  .page-promotions-vip-benefits__card,
  .page-promotions-vip-benefits__container,
  .page-promotions-vip-benefits__hero-image-wrapper,
  .page-promotions-vip-benefits__hero-content,
  .page-promotions-vip-benefits__cta-buttons,
  .page-promotions-vip-benefits__button-group,
  .page-promotions-vip-benefits__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Ensure buttons wrap if multiple */
  .page-promotions-vip-benefits__cta-buttons {
    display: flex;
    flex-direction: column; 
    gap: 10px;
  }
}