/* style/blog-hii88-platform-faq.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #121212;
  --login-color: #EA7C07;
}

.page-blog-hii88-platform-faq {
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
}

.page-blog-hii88-platform-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
  text-align: center;
}

.page-blog-hii88-platform-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog-hii88-platform-faq__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-blog-hii88-platform-faq__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-hii88-platform-faq__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-hii88-platform-faq__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-blog-hii88-platform-faq__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-hii88-platform-faq__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hii88-platform-faq__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hii88-platform-faq__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-hii88-platform-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-hii88-platform-faq__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-blog-hii88-platform-faq__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.page-blog-hii88-platform-faq__paragraph a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-hii88-platform-faq__paragraph a:hover {
  text-decoration: underline;
}

.page-blog-hii88-platform-faq__faq-list {
  margin-top: 40px;
}

.page-blog-hii88-platform-faq__faq-category-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.page-blog-hii88-platform-faq__faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hii88-platform-faq__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-hii88-platform-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--secondary-color);
  list-style: none;
}

.page-blog-hii88-platform-faq__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hii88-platform-faq__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-hii88-platform-faq__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-hii88-platform-faq__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-blog-hii88-platform-faq__faq-answer p {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-hii88-platform-faq__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-hii88-platform-faq__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-hii88-platform-faq__benefits-section {
  padding: 50px 20px;
  text-align: center;
  background-color: rgba(38, 169, 224, 0.1);
  margin-top: 40px;
  border-radius: 8px;
}

.page-blog-hii88-platform-faq__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 8px;
  margin-top: 40px;
}

.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__section-title,
.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__paragraph {
  color: var(--text-light);
}

.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__btn-primary {
  background-color: var(--login-color);
  border-color: var(--login-color);
}

.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__btn-primary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__btn-secondary {
  color: var(--text-light);
  border-color: var(--text-light);
}

.page-blog-hii88-platform-faq__cta-section .page-blog-hii88-platform-faq__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-hii88-platform-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hii88-platform-faq__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-hii88-platform-faq__hero-content {
    padding: 15px;
  }

  .page-blog-hii88-platform-faq__main-title {
    font-size: 2.2rem;
  }

  .page-blog-hii88-platform-faq__hero-description {
    font-size: 1rem;
  }

  .page-blog-hii88-platform-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-blog-hii88-platform-faq__btn-primary,
  .page-blog-hii88-platform-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-blog-hii88-platform-faq__content-area,
  .page-blog-hii88-platform-faq__benefits-section,
  .page-blog-hii88-platform-faq__cta-section {
    padding: 20px 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hii88-platform-faq__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-blog-hii88-platform-faq__faq-category-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-hii88-platform-faq__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-hii88-platform-faq__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* Image responsiveness */
  .page-blog-hii88-platform-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hii88-platform-faq__faq-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
  }
}