/* style/blog-how-to-choose-reliable-ax88.css */

/* Base styles for the page content, ensuring text color contrasts with assumed dark body background */
.page-blog-how-to-choose-reliable-ax88 {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Hero Section */
.page-blog-how-to-choose-reliable-ax88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: #08160F;
}

.page-blog-how-to-choose-reliable-ax88__hero-image {
  width: 100%;
  max-height: 675px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-how-how-to-choose-reliable-ax88__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-how-to-choose-reliable-ax88__main-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
}

.page-blog-how-to-choose-reliable-ax88__lead-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-ax88__cta-button {
  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: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-how-to-choose-reliable-ax88__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-reliable-ax88__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* General Section Styling */
.page-blog-how-to-choose-reliable-ax88__content-section,
.page-blog-how-to-choose-reliable-ax88__criteria-section,
.page-blog-how-to-choose-reliable-ax88__ax88-features-section,
.page-blog-how-to-choose-reliable-ax88__guide-section,
.page-blog-how-to-choose-reliable-ax88__notes-section,
.page-blog-how-to-choose-reliable-ax88__faq-section,
.page-blog-how-to-choose-reliable-ax88__conclusion-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-blog-how-to-choose-reliable-ax88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-reliable-ax88__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(24px, 3vw, 40px);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-choose-reliable-ax88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Primary Color */
  border-radius: 2px;
}

.page-blog-how-to-choose-reliable-ax88__sub-title {
  color: #11A84E; /* Primary Color */
  font-size: clamp(20px, 2.5vw, 28px);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-reliable-ax88__text-block p,
.page-blog-how-to-choose-reliable-ax88 li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-how-to-choose-reliable-ax88__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 1000px;
}

/* Button Group */
.page-blog-how-to-choose-reliable-ax88__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-how-to-choose-reliable-ax88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-how-to-choose-reliable-ax88__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-reliable-ax88__btn-secondary {
  background: transparent;
  color: #11A84E; /* Primary Color */
  border: 2px solid #11A84E; /* Primary Color */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-blog-how-to-choose-reliable-ax88__btn-secondary:hover {
  background: #11A84E; /* Primary Color */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-how-to-choose-reliable-ax88__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-choose-reliable-ax88__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-ax88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-reliable-ax88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-reliable-ax88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-blog-how-to-choose-reliable-ax88__faq-item[open] .page-blog-how-to-choose-reliable-ax88__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-reliable-ax88__faq-answer {
  padding: 0 25px 18px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-ax88 {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-how-to-choose-reliable-ax88__hero-section,
  .page-blog-how-to-choose-reliable-ax88__content-section,
  .page-blog-how-to-choose-reliable-ax88__criteria-section,
  .page-blog-how-to-choose-reliable-ax88__ax88-features-section,
  .page-blog-how-to-choose-reliable-ax88__guide-section,
  .page-blog-how-to-choose-reliable-ax88__notes-section,
  .page-blog-how-to-choose-reliable-ax88__faq-section,
  .page-blog-how-to-choose-reliable-ax88__conclusion-section {
    padding: 30px 10px;
  }

  .page-blog-how-to-choose-reliable-ax88__container {
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-choose-reliable-ax88__main-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .page-blog-how-to-choose-reliable-ax88__section-title {
    font-size: clamp(20px, 6vw, 32px);
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-reliable-ax88__sub-title {
    font-size: clamp(18px, 5vw, 24px);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Images responsiveness */
  .page-blog-how-to-choose-reliable-ax88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Button responsiveness */
  .page-blog-how-to-choose-reliable-ax88__cta-button,
  .page-blog-how-to-choose-reliable-ax88__btn-primary,
  .page-blog-how-to-choose-reliable-ax88__btn-secondary,
  .page-blog-how-to-choose-reliable-ax88 a[class*="button"],
  .page-blog-how-to-choose-reliable-ax88 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }

  .page-blog-how-to-choose-reliable-ax88__button-group {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-reliable-ax88__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-choose-reliable-ax88__faq-answer {
    padding: 0 20px 15px;
  }
}