.page-blog-benefits-of-new8-vip {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: var(--page-bg, #F4F7FB); /* Ensure background is light */
}

.page-blog-benefits-of-new8-vip .highlight {
  color: #2F6BFF;
  font-weight: bold;
}

.page-blog-benefits-of-new8-vip__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-benefits-of-new8-vip__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  position: relative;
  overflow: hidden;
}

.page-blog-benefits-of-new8-vip__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-benefits-of-new8-vip__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensure image covers the area, might crop sides */
  display: block;
}

.page-blog-benefits-of-new8-vip__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-blog-benefits-of-new8-vip__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.page-blog-benefits-of-new8-vip__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-benefits-of-new8-vip__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-benefits-of-new8-vip__btn-primary,
.page-blog-benefits-of-new8-vip__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-benefits-of-new8-vip__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-benefits-of-new8-vip__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-benefits-of-new8-vip__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-blog-benefits-of-new8-vip__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-benefits-of-new8-vip__content-section {
  padding: 60px 0;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-blog-benefits-of-new8-vip__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-benefits-of-new8-vip__section-title--white {
  color: #ffffff;
}

.page-blog-benefits-of-new8-vip__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #2F6BFF;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-benefits-of-new8-vip__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  color: #1F2D3D;
}

.page-blog-benefits-of-new8-vip__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-benefits-of-new8-vip__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-blog-benefits-of-new8-vip__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-blog-benefits-of-new8-vip__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-benefits-of-new8-vip__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-blog-benefits-of-new8-vip__card-description {
  font-size: 0.95em;
  color: #1F2D3D;
}

.page-blog-benefits-of-new8-vip__benefits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-benefits-of-new8-vip__benefit-item {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-blog-benefits-of-new8-vip__benefit-item:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image and text */
}

.page-blog-benefits-of-new8-vip__benefit-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-benefits-of-new8-vip__benefit-content {
  padding: 30px;
  width: 60%;
}

.page-blog-benefits-of-new8-vip__benefit-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-blog-benefits-of-new8-vip__benefit-description {
  font-size: 1em;
  color: #1F2D3D;
}

.page-blog-benefits-of-new8-vip__cta-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-blog-benefits-of-new8-vip__faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
}

.page-blog-benefits-of-new8-vip__faq-list {
  margin-top: 30px;
}

.page-blog-benefits-of-new8-vip__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-blog-benefits-of-new8-vip__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #1F2D3D;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-benefits-of-new8-vip__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-benefits-of-new8-vip__faq-question:hover {
  background-color: #f5f5f5;
}

.page-blog-benefits-of-new8-vip__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF;
  margin-left: 15px;
}

.page-blog-benefits-of-new8-vip__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-blog-benefits-of-new8-vip__faq-answer p {
    margin-bottom: 0;
}

.page-blog-benefits-of-new8-vip__call-to-action {
  padding: 60px 0;
  background-color: #F4F7FB;
  text-align: center;
  color: #1F2D3D;
}

.page-blog-benefits-of-new8-vip__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-blog-benefits-of-new8-vip__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-blog-benefits-of-new8-vip__cta-description {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-benefits-of-new8-vip__btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
  min-width: 200px;
}

/* General image responsiveness */
.page-blog-benefits-of-new8-vip img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-benefits-of-new8-vip {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-benefits-of-new8-vip__container,
  .page-blog-benefits-of-new8-vip__hero-section,
  .page-blog-benefits-of-new8-vip__content-section,
  .page-blog-benefits-of-new8-vip__faq-section,
  .page-blog-benefits-of-new8-vip__call-to-action {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  /* Hero Section */
  .page-blog-benefits-of-new8-vip__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-blog-benefits-of-new8-vip__hero-image-wrapper {
    max-height: none;
    aspect-ratio: unset;
  }

  .page-blog-benefits-of-new8-vip__hero-image {
    object-fit: contain; /* Prevent cropping on mobile */
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-blog-benefits-of-new8-vip__main-title {
    font-size: 2em;
    margin-top: 20px;
  }

  .page-blog-benefits-of-new8-vip__hero-description {
    font-size: 1em;
  }

  .page-blog-benefits-of-new8-vip__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-blog-benefits-of-new8-vip__btn-primary,
  .page-blog-benefits-of-new8-vip__btn-secondary,
  .page-blog-benefits-of-new8-vip a[class*="button"],
  .page-blog-benefits-of-new8-vip a[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Section Titles */
  .page-blog-benefits-of-new8-vip__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-benefits-of-new8-vip__subsection-title {
    font-size: 1.4em;
    text-align: left;
  }

  .page-blog-benefits-of-new8-vip__text-block {
    font-size: 1em;
  }

  /* Card Grid */
  .page-blog-benefits-of-new8-vip__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-benefits-of-new8-vip__card {
    padding: 25px;
  }

  .page-blog-benefits-of-new8-vip__card-icon {
    width: 80px;
    height: 80px;
  }

  /* Benefits List */
  .page-blog-benefits-of-new8-vip__benefits-list {
    gap: 30px;
  }

  .page-blog-benefits-of-new8-vip__benefit-item,
  .page-blog-benefits-of-new8-vip__benefit-item:nth-child(even) {
    flex-direction: column;
  }

  .page-blog-benefits-of-new8-vip__benefit-image {
    width: 100%;
    height: auto;
    max-width: 100% !important;
  }

  .page-blog-benefits-of-new8-vip__benefit-content {
    width: 100%;
    padding: 25px;
  }

  .page-blog-benefits-of-new8-vip__benefit-title {
    font-size: 1.4em;
  }

  /* CTA Bottom */
  .page-blog-benefits-of-new8-vip__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }

  /* FAQ Section */
  .page-blog-benefits-of-new8-vip__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-benefits-of-new8-vip__faq-toggle {
    font-size: 1.2em;
  }

  .page-blog-benefits-of-new8-vip__faq-answer {
    padding: 0 20px 15px;
  }

  /* Call to Action */
  .page-blog-benefits-of-new8-vip__cta-title {
    font-size: 2em;
  }

  .page-blog-benefits-of-new8-vip__cta-description {
    font-size: 1em;
  }

  .page-blog-benefits-of-new8-vip__btn-large {
    min-width: unset;
    width: 100% !important;
    font-size: 1em !important;
  }

  /* Generic image rules for content area */
  .page-blog-benefits-of-new8-vip img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All content containers for mobile */
  .page-blog-benefits-of-new8-vip__section,
  .page-blog-benefits-of-new8-vip__card,
  .page-blog-benefits-of-new8-vip__container,
  .page-blog-benefits-of-new8-vip__benefits-list,
  .page-blog-benefits-of-new8-vip__faq-list,
  .page-blog-benefits-of-new8-vip__cta-flex {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  /* Ensure multiple buttons wrap on mobile */
  .page-blog-benefits-of-new8-vip__cta-buttons,
  .page-blog-benefits-of-new8-vip__button-group,
  .page-blog-benefits-of-new8-vip__btn-container,
  .page-blog-benefits-of-new8-vip__cta-bottom {
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
  }
}

/* Ensure contrast for various elements */
.page-blog-benefits-of-new8-vip__light-bg {
  color: #1F2D3D; /* Light background with dark text */
  background: #F4F7FB;
}

.page-blog-benefits-of-new8-vip__dark-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff; /* Dark background with light text */
}

.page-blog-benefits-of-new8-vip__card {
  background: #FFFFFF;
  color: #1F2D3D;
  border: 1px solid #D6E2FF;
}

.page-blog-benefits-of-new8-vip__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.page-blog-benefits-of-new8-vip__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}