.page-blog-w88yes-latest-link-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color);
}

.page-blog-w88yes-latest-link-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content */
  background-color: var(--bg-color);
  overflow: hidden;
}

.page-blog-w88yes-latest-link-faq__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-blog-w88yes-latest-link-faq__hero-content {
  max-width: 900px;
  z-index: 10;
  padding: 0 20px;
}

.page-blog-w88yes-latest-link-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-w88yes-latest-link-faq__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-w88yes-latest-link-faq__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-w88yes-latest-link-faq__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-w88yes-latest-link-faq__introduction-section,
.page-blog-w88yes-latest-link-faq__benefits-section {
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333;
}

.page-blog-w88yes-latest-link-faq__faq-section,
.page-blog-w88yes-latest-link-faq__conclusion-section {
  padding: 60px 20px;
  background-color: var(--bg-color); /* Dark background */
  color: var(--text-main);
}

.page-blog-w88yes-latest-link-faq__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-w88yes-latest-link-faq__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-main);
  position: relative;
}

.page-blog-w88yes-latest-link-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-w88yes-latest-link-faq__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-blog-w88yes-latest-link-faq__introduction-section .page-blog-w88yes-latest-link-faq__text-block {
  color: #333333;
}

.page-blog-w88yes-latest-link-faq__faq-item {
  background-color: var(--card-b-g); /* Dark card background */
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-w88yes-latest-link-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border);
}

.page-blog-w88yes-latest-link-faq__faq-question:hover {
  background-color: var(--deep-green);
}

.page-blog-w88yes-latest-link-faq__faq-qtext {
  flex-grow: 1;
}

.page-blog-w88yes-latest-link-faq__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-w88yes-latest-link-faq__faq-item[open] .page-blog-w88yes-latest-link-faq__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-w88yes-latest-link-faq__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-b-g);
}

.page-blog-w88yes-latest-link-faq__faq-item details > summary {
  list-style: none;
}

.page-blog-w88yes-latest-link-faq__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-w88yes-latest-link-faq__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-blog-w88yes-latest-link-faq__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-w88yes-latest-link-faq__benefit-card {
  background-color: #f8f8f8; /* Light card background */
  color: #333333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-blog-w88yes-latest-link-faq__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-w88yes-latest-link-faq__benefit-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 5px;
}

.page-blog-w88yes-latest-link-faq__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #11A84E;
  margin-bottom: 15px;
}

.page-blog-w88yes-latest-link-faq__card-description {
  font-size: 0.95rem;
  color: #555555;
}

/* Custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-b-g: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Ensure color contrast for light background sections */
.page-blog-w88yes-latest-link-faq__light-bg .page-blog-w88yes-latest-link-faq__section-title,
.page-blog-w88yes-latest-link-faq__light-bg .page-blog-w88yes-latest-link-faq__text-block {
  color: #333333;
}

.page-blog-w88yes-latest-link-faq__light-bg .page-blog-w88yes-latest-link-faq__card-title {
  color: var(--primary-color);
}

.page-blog-w88yes-latest-link-faq__light-bg .page-blog-w88yes-latest-link-faq__card-description {
  color: #555555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-w88yes-latest-link-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-w88yes-latest-link-faq__hero-section {
    padding: 10px 15px 40px;
    min-height: auto;
  }

  .page-blog-w88yes-latest-link-faq__hero-image {
    max-height: 400px;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-w88yes-latest-link-faq__main-title {
    font-size: 2rem;
  }

  .page-blog-w88yes-latest-link-faq__subtitle {
    font-size: 1rem;
  }

  .page-blog-w88yes-latest-link-faq__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-w88yes-latest-link-faq__introduction-section,
  .page-blog-w88yes-latest-link-faq__faq-section,
  .page-blog-w88yes-latest-link-faq__benefits-section,
  .page-blog-w88yes-latest-link-faq__conclusion-section {
    padding: 40px 15px;
  }

  .page-blog-w88yes-latest-link-faq__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-w88yes-latest-link-faq__text-block {
    font-size: 0.95rem;
  }

  .page-blog-w88yes-latest-link-faq__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-w88yes-latest-link-faq__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-blog-w88yes-latest-link-faq__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-w88yes-latest-link-faq__benefit-icon {
    width: 200px !important;
    height: auto !important;
  }

  /* Ensure all images are responsive */
  .page-blog-w88yes-latest-link-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers are responsive */
  .page-blog-w88yes-latest-link-faq__container,
  .page-blog-w88yes-latest-link-faq__hero-content,
  .page-blog-w88yes-latest-link-faq__cta-wrapper,
  .page-blog-w88yes-latest-link-faq__benefits-grid,
  .page-blog-w88yes-latest-link-faq__benefit-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Override specific padding for sections that already have 15px */
  .page-blog-w88yes-latest-link-faq__introduction-section.page-blog-w88yes-latest-link-faq__container,
  .page-blog-w88yes-latest-link-faq__faq-section.page-blog-w88yes-latest-link-faq__container,
  .page-blog-w88yes-latest-link-faq__benefits-section.page-blog-w88yes-latest-link-faq__container,
  .page-blog-w88yes-latest-link-faq__conclusion-section.page-blog-w88yes-latest-link-faq__container {
      padding-left: 0;
      padding-right: 0;
  }
}