/* style/index-why-choose-qh88.css */

:root {
  --qh88-primary-color: #0A2342;
  --qh88-accent-color: #FFD700;
  --qh88-text-light: #FFFFFF;
  --qh88-text-dark: #0A2342;
  --qh88-background-light: #F8F9FA;
  --qh88-background-dark: #0A2342;
  --qh88-border-color: #e0e0e0;
}

.page-index-why-choose-qh88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--qh88-text-dark);
  background-color: var(--qh88-background-light);
}

.page-index-why-choose-qh88__hero {
  background: linear-gradient(135deg, var(--qh88-primary-color) 0%, #1A3A5F 100%);
  color: var(--qh88-text-light);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-why-choose-qh88__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-why-choose-qh88__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--qh88-accent-color);
  line-height: 1.2;
}

.page-index-why-choose-qh88__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-index-why-choose-qh88__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-why-choose-qh88__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-index-why-choose-qh88__btn--primary {
  background-color: var(--qh88-accent-color);
  color: var(--qh88-primary-color);
  border: 2px solid var(--qh88-accent-color);
}

.page-index-why-choose-qh88__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-why-choose-qh88__btn--secondary {
  background-color: transparent;
  color: var(--qh88-text-light);
  border: 2px solid var(--qh88-text-light);
}

.page-index-why-choose-qh88__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-index-why-choose-qh88__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 600px;
  opacity: 0.2;
  z-index: 0;
}

.page-index-why-choose-qh88__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-why-choose-qh88__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-why-choose-qh88__section-title {
  font-size: 2.8em;
  color: var(--qh88-primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-why-choose-qh88__section-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-why-choose-qh88__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-index-why-choose-qh88__benefit-card {
  background-color: var(--qh88-text-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-why-choose-qh88__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-qh88__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-color: var(--qh88-accent-color);
  border-radius: 50%;
  padding: 10px;
  object-fit: contain;
}

.page-index-why-choose-qh88__benefit-title {
  font-size: 1.8em;
  color: var(--qh88-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-why-choose-qh88__benefit-text {
  font-size: 1em;
  color: #444;
  line-height: 1.7;
}

.page-index-why-choose-qh88__section--cta {
  background-color: var(--qh88-primary-color);
  color: var(--qh88-text-light);
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-index-why-choose-qh88__section--cta .page-index-why-choose-qh88__section-title {
  color: var(--qh88-accent-color);
  font-size: 3em;
}

.page-index-why-choose-qh88__section--cta .page-index-why-choose-qh88__section-description {
  color: var(--qh88-text-light);
  opacity: 0.9;
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-index-why-choose-qh88__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.page-index-why-choose-qh88__section--faq {
  background-color: var(--qh88-background-light);
  padding-bottom: 80px;
}

.page-index-why-choose-qh88__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-index-why-choose-qh88__faq-item {
  background-color: var(--qh88-text-light);
  border: 1px solid var(--qh88-border-color);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-why-choose-qh88__faq-question {
  font-size: 1.5em;
  color: var(--qh88-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-index-why-choose-qh88__faq-answer {
  font-size: 1.1em;
  color: #333;
  line-height: 1.8;
}

.page-index-why-choose-qh88__faq-link {
  color: var(--qh88-primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-index-why-choose-qh88__faq-link:hover {
  color: var(--qh88-accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-why-choose-qh88__hero {
    padding: 60px 20px;
    flex-direction: column;
    gap: 30px;
  }

  .page-index-why-choose-qh88__hero-image-wrapper {
    position: static;
    width: 80%;
    max-width: 400px;
    margin-top: 30px;
    opacity: 0.3;
  }

  .page-index-why-choose-qh88__title {
    font-size: 2.8em;
  }

  .page-index-why-choose-qh88__subtitle {
    font-size: 1.3em;
  }

  .page-index-why-choose-qh88__section-title {
    font-size: 2.2em;
  }

  .page-index-why-choose-qh88__section--cta .page-index-why-choose-qh88__section-title {
    font-size: 2.5em;
  }

  .page-index-why-choose-qh88__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-index-why-choose-qh88__hero-actions,
  .page-index-why-choose-qh88__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-qh88__hero {
    padding: 50px 15px;
  }

  .page-index-why-choose-qh88__title {
    font-size: 2.5em;
  }

  .page-index-why-choose-qh88__subtitle {
    font-size: 1.1em;
  }

  .page-index-why-choose-qh88__section {
    padding: 40px 15px;
  }

  .page-index-why-choose-qh88__section-title {
    font-size: 2em;
  }

  .page-index-why-choose-qh88__section-description {
    font-size: 1em;
  }

  .page-index-why-choose-qh88__benefit-icon {
    width: 50px;
    height: 50px;
  }

  .page-index-why-choose-qh88__benefit-title {
    font-size: 1.6em;
  }

  .page-index-why-choose-qh88__faq-question {
    font-size: 1.3em;
  }

  .page-index-why-choose-qh88__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-index-why-choose-qh88__title {
    font-size: 2em;
  }

  .page-index-why-choose-qh88__subtitle {
    font-size: 1em;
  }

  .page-index-why-choose-qh88__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-why-choose-qh88__section-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-qh88__section--cta .page-index-why-choose-qh88__section-title {
    font-size: 2em;
  }
}