/* style/blog-he88-nhacai-platform-review.css */

/* Base styles */
.page-blog-he88-nhacai-platform-review {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #f4f7f6;
}

/* Hero Section */
.page-blog-he88-nhacai-platform-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* 10px top padding as per rule */
  background-color: #08160F; /* Deep Green background for hero */
  color: #F2FFF6; /* Light text for dark background */
}

.page-blog-he88-nhacai-platform-review__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for image */
  margin-bottom: 20px;
}

.page-blog-he88-nhacai-platform-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-he88-nhacai-platform-review__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-he88-nhacai-platform-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold for main title */
}

.page-blog-he88-nhacai-platform-review__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.page-blog-he88-nhacai-platform-review__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-he88-nhacai-platform-review__btn-primary,
.page-blog-he88-nhacai-platform-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-he88-nhacai-platform-review__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-he88-nhacai-platform-review__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-he88-nhacai-platform-review__btn-secondary {
  background: #11A84E;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-blog-he88-nhacai-platform-review__btn-secondary:hover {
  background: #22C768;
  color: #ffffff;
  border-color: #22C768;
}

/* Content Area */
.page-blog-he88-nhacai-platform-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f4f7f6;
  color: #333333;
}

.page-blog-he88-nhacai-platform-review__article {
  line-height: 1.7;
  font-size: 1rem;
}

.page-blog-he88-nhacai-platform-review__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #11A84E; /* Main color for section titles */
}

.page-blog-he88-nhacai-platform-review__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #22C768; /* Auxiliary color for sub titles */
}

.page-blog-he88-nhacai-platform-review p {
  margin-bottom: 15px;
}

.page-blog-he88-nhacai-platform-review__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-blog-he88-nhacai-platform-review__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

/* FAQ Section */
.page-blog-he88-nhacai-platform-review__faq-section {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  color: #F2FFF6;
}

.page-blog-he88-nhacai-platform-review__faq-section .page-blog-he88-nhacai-platform-review__section-title {
  color: #F2C14E; /* Gold for FAQ title */
  text-align: center;
  margin-bottom: 30px;
}

.page-blog-he88-nhacai-platform-review__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-he88-nhacai-platform-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6;
  position: relative;
  list-style: none;
}

.page-blog-he88-nhacai-platform-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-he88-nhacai-platform-review__faq-qtext {
  flex-grow: 1;
}

.page-blog-he88-nhacai-platform-review__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-he88-nhacai-platform-review__faq-item[open] .page-blog-he88-nhacai-platform-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-he88-nhacai-platform-review__faq-answer {
  padding: 0 25px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8;
}

/* Bottom CTA buttons */
.page-blog-he88-nhacai-platform-review__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-he88-nhacai-platform-review__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-he88-nhacai-platform-review__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-he88-nhacai-platform-review__description {
    font-size: 1rem;
  }

  .page-blog-he88-nhacai-platform-review__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-blog-he88-nhacai-platform-review__sub-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  }
}

@media (max-width: 768px) {
  .page-blog-he88-nhacai-platform-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-he88-nhacai-platform-review__hero-section {
    padding: 10px 15px 30px;
  }

  .page-blog-he88-nhacai-platform-review__main-title {
    font-size: 2.2rem;
  }

  .page-blog-he88-nhacai-platform-review__description {
    font-size: 0.95rem;
  }

  .page-blog-he88-nhacai-platform-review__content-area,
  .page-blog-he88-nhacai-platform-review__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-he88-nhacai-platform-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-he88-nhacai-platform-review__btn-primary,
  .page-blog-he88-nhacai-platform-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-he88-nhacai-platform-review__image-container,
  .page-blog-he88-nhacai-platform-review__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-he88-nhacai-platform-review__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-he88-nhacai-platform-review__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-he88-nhacai-platform-review__faq-answer {
    padding: 0 20px 15px;
  }
}