.page-resources-vuabet88-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-resources-vuabet88-faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-vuabet88-faq-hero {
  background: linear-gradient(135deg, #0A2463, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-resources-vuabet88-faq-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-vuabet88-faq-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vuabet88-faq-hero-cta,
.page-resources-vuabet88-faq-cta-bottom {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700; /* Vàng */
  color: #0A2463; /* Xanh đậm */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vuabet88-faq-hero-cta:hover,
.page-resources-vuabet88-faq-cta-bottom:hover {
  background-color: #e6c200; /* Vàng đậm hơn */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-vuabet88-faq-intro,
.page-resources-vuabet88-faq-category,
.page-resources-vuabet88-faq-conclusion {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-vuabet88-faq-intro p,
.page-resources-vuabet88-faq-conclusion p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #555;
}

.page-resources-vuabet88-faq-intro a,
.page-resources-vuabet88-faq-conclusion a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-vuabet88-faq-intro a:hover,
.page-resources-vuabet88-faq-conclusion a:hover {
  color: #FFD700;
}

.page-resources-vuabet88-faq-section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-vuabet88-faq-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #0A2463;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e6e6e6;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #0A2463;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2463;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 800px; /* Adjust as needed for content length */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1em;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-vuabet88-faq-hero-title {
    font-size: 2.8em;
  }
  .page-resources-vuabet88-faq-section-title {
    font-size: 2em;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.6em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-vuabet88-faq-hero {
    padding: 60px 0;
  }
  .page-resources-vuabet88-faq-hero-title {
    font-size: 2.2em;
  }
  .page-resources-vuabet88-faq-hero-description {
    font-size: 1em;
  }
  .page-resources-vuabet88-faq-hero-cta,
  .page-resources-vuabet88-faq-cta-bottom {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-resources-vuabet88-faq-intro,
  .page-resources-vuabet88-faq-category,
  .page-resources-vuabet88-faq-conclusion {
    padding: 40px 0;
  }
  .page-resources-vuabet88-faq-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .faq-question h3 {
    margin-bottom: 8px;
    font-size: 1em;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
    font-size: 1.4em;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-vuabet88-faq-hero-title {
    font-size: 1.8em;
  }
  .page-resources-vuabet88-faq-section-title {
    font-size: 1.5em;
  }
}