/* style/blog-helo888-apk-faq-strategies.css */

/* Base styles for the page content, considering dark body background */
.page-blog-helo888-apk-faq-strategies {
  color: #FFF1E8; /* Main text color for dark background */
  background-color: transparent; /* Body handles the main background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-helo888-apk-faq-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero-like section for blog post main visual */
.page-blog-helo888-apk-faq-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background: linear-gradient(180deg, #7E0D0D 0%, #140C0C 100%); /* Deep red to body background */
  border-bottom: 2px solid #6A1E1E;
}

.page-blog-helo888-apk-faq-strategies__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-helo888-apk-faq-strategies__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-helo888-apk-faq-strategies__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-helo888-apk-faq-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-helo888-apk-faq-strategies__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Use clamp for responsive font size */
  color: #F3C54D; /* Gold color for main title */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-helo888-apk-faq-strategies__intro-text {
  font-size: 1.15rem;
  color: #FFF1E8;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-helo888-apk-faq-strategies__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Custom button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-blog-helo888-apk-faq-strategies__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-helo888-apk-faq-strategies__content-section {
  background-color: #140C0C; /* Card BG color for content sections */
  padding-bottom: 60px;
}

.page-blog-helo888-apk-faq-strategies__section-title {
  font-size: 2.2rem;
  color: #F3C54D;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #6A1E1E;
  padding-bottom: 15px;
}

.page-blog-helo888-apk-faq-strategies__sub-title {
  font-size: 1.8rem;
  color: #FFB04A;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-helo888-apk-faq-strategies__text-block {
  font-size: 1.05rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-helo888-apk-faq-strategies__faq-list {
  margin-top: 40px;
}

details.page-blog-helo888-apk-faq-strategies__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

details.page-blog-helo888-apk-faq-strategies__faq-item summary.page-blog-helo888-apk-faq-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F3C54D; /* Gold color for questions */
  font-weight: bold;
  font-size: 1.1rem;
}

details.page-blog-helo888-apk-faq-strategies__faq-item summary.page-blog-helo888-apk-faq-strategies__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-helo888-apk-faq-strategies__faq-item summary.page-blog-helo888-apk-faq-strategies__faq-question:hover {
  background: rgba(255, 255, 255, 0.05); /* Slight hover effect */
}

.page-blog-helo888-apk-faq-strategies__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D;
}

.page-blog-helo888-apk-faq-strategies__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-blog-helo888-apk-faq-strategies__faq-item .page-blog-helo888-apk-faq-strategies__faq-answer {
  padding: 0 25px 25px;
  background: rgba(0, 0, 0, 0.2); /* Slightly darker background for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF1E8;
  font-size: 1rem;
}

.page-blog-helo888-apk-faq-strategies__inline-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #E53030;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.page-blog-helo888-apk-faq-strategies__inline-button:hover {
  background-color: #C61F1F;
}

.page-blog-helo888-apk-faq-strategies__image-container {
  margin: 50px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-helo888-apk-faq-strategies__image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-helo888-apk-faq-strategies__cta-section {
  background-color: #2A1212; /* Card BG */
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-helo888-apk-faq-strategies__cta-section p {
  font-size: 1.3rem;
  color: #FFF1E8;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-helo888-apk-faq-strategies__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-helo888-apk-faq-strategies__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-helo888-apk-faq-strategies__intro-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .page-blog-helo888-apk-faq-strategies__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-helo888-apk-faq-strategies__container {
    padding: 20px 15px;
  }

  .page-blog-helo888-apk-faq-strategies__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-helo888-apk-faq-strategies__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-helo888-apk-faq-strategies__text-block {
    font-size: 0.95rem;
  }

  details.page-blog-helo888-apk-faq-strategies__faq-item summary.page-blog-helo888-apk-faq-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-helo888-apk-faq-strategies__faq-qtext {
    font-size: 1rem;
  }

  .page-blog-helo888-apk-faq-strategies__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-blog-helo888-apk-faq-strategies__faq-item .page-blog-helo888-apk-faq-strategies__faq-answer {
    padding: 0 20px 20px;
  }
  
  .page-blog-helo888-apk-faq-strategies__image-container {
    margin: 30px auto;
  }
  
  .page-blog-helo888-apk-faq-strategies__cta-section {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .page-blog-helo888-apk-faq-strategies__cta-section p {
    font-size: 1.1rem;
  }

  /* Ensure all images are responsive */
  .page-blog-helo888-apk-faq-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-helo888-apk-faq-strategies__section, 
  .page-blog-helo888-apk-faq-strategies__card, 
  .page-blog-helo888-apk-faq-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-helo888-apk-faq-strategies__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-helo888-apk-faq-strategies__section-title {
    font-size: 1.6rem;
  }
  .page-blog-helo888-apk-faq-strategies__sub-title {
    font-size: 1.3rem;
  }
  .page-blog-helo888-apk-faq-strategies__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
}