/* style/resources-faq-link-vao-bong.css */
.page-resources-faq-link-vao-bong {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#000000), so main text color should be light */
  background-color: #000000;
}

.page-resources-faq-link-vao-bong__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-faq-link-vao-bong__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-resources-faq-link-vao-bong__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-faq-link-vao-bong__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure hero content clears fixed header */
}

.page-resources-faq-link-vao-bong__hero-content {
  max-width: 800px;
  padding: 20px;
  z-index: 3;
}

.page-resources-faq-link-vao-bong__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-faq-link-vao-bong__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-faq-link-vao-bong__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-faq-link-vao-bong__btn-primary,
.page-resources-faq-link-vao-bong__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-faq-link-vao-bong__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-faq-link-vao-bong__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-resources-faq-link-vao-bong__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color */
  border: 2px solid #017439;
}

.page-resources-faq-link-vao-bong__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-faq-link-vao-bong__introduction-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-faq-link-vao-bong__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-faq-link-vao-bong__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff; /* For dark background */
}

.page-resources-faq-link-vao-bong__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
  color: #f0f0f0;
}

.page-resources-faq-link-vao-bong__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-resources-faq-link-vao-bong__faq-list {
  margin-top: 40px;
}

.page-resources-faq-link-vao-bong__faq-item {
  background-color: #1a1a1a; /* Darker card background */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-faq-link-vao-bong__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-faq-link-vao-bong__faq-question:hover {
  background-color: #2a2a2a;
}

.page-resources-faq-link-vao-bong__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-faq-link-vao-bong__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-faq-link-vao-bong__faq-answer p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-faq-link-vao-bong__faq-answer ul,
.page-resources-faq-link-vao-bong__faq-answer ol {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-position: inside;
}

.page-resources-faq-link-vao-bong__faq-answer li {
  margin-bottom: 5px;
  color: #f0f0f0;
}

.page-resources-faq-link-vao-bong__faq-item.active .page-resources-faq-link-vao-bong__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-resources-faq-link-vao-bong__faq-item.active .page-resources-faq-link-vao-bong__faq-toggle {
  transform: rotate(0deg);
}

.page-resources-faq-link-vao-bong__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

.page-resources-faq-link-vao-bong__cta-banner {
  padding: 60px 0;
  text-align: center;
}

.page-resources-faq-link-vao-bong__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-faq-link-vao-bong__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-faq-link-vao-bong__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-faq-link-vao-bong {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-faq-link-vao-bong__hero-section {
    height: 500px;
  }

  .page-resources-faq-link-vao-bong__hero-overlay {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile hero content clears fixed header */
  }

  .page-resources-faq-link-vao-bong__hero-title {
    font-size: 2.2em;
  }

  .page-resources-faq-link-vao-bong__hero-description,
  .page-resources-faq-link-vao-bong__section-description,
  .page-resources-faq-link-vao-bong__cta-description {
    font-size: 1em;
  }

  .page-resources-faq-link-vao-bong__section-title,
  .page-resources-faq-link-vao-bong__cta-title {
    font-size: 1.8em;
  }

  .page-resources-faq-link-vao-bong__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-faq-link-vao-bong__btn-primary,
  .page-resources-faq-link-vao-bong__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-faq-link-vao-bong img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-faq-link-vao-bong__section,
  .page-resources-faq-link-vao-bong__card,
  .page-resources-faq-link-vao-bong__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-faq-link-vao-bong__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-faq-link-vao-bong__faq-answer {
    padding: 0 20px;
  }

  .page-resources-faq-link-vao-bong__faq-item.active .page-resources-faq-link-vao-bong__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-faq-link-vao-bong__hero-title {
    font-size: 1.8em;
  }

  .page-resources-faq-link-vao-bong__hero-description {
    font-size: 0.9em;
  }
}