/* style/resources-hello88-faq.css */
.page-resources-hello88-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-hello88-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-hello88-faq__hero-section {
  background: linear-gradient(135deg, #001F3F 0%, #FFD700 100%); /* Main and auxiliary colors */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.page-resources-hello88-faq__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #eee;
}

.page-resources-hello88-faq__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-resources-hello88-faq__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-resources-hello88-faq__section-title {
  font-size: 2.5em;
  color: #001F3F;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-hello88-faq__faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.page-resources-hello88-faq__category-card {
  background-color: #FFD700;
  color: #001F3F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.page-resources-hello88-faq__category-card:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-hello88-faq__faq-category {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid #eee;
}

.page-resources-hello88-faq__category-heading {
  font-size: 2em;
  color: #001F3F;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
  font-weight: 600;
}

.page-resources-hello88-faq__category-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-hello88-faq__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-hello88-faq__accordion-header {
  background-color: #001F3F;
  color: #fff;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-hello88-faq__accordion-header:hover {
  background-color: #002b54;
}

.page-resources-hello88-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-hello88-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-hello88-faq__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-hello88-faq__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-hello88-faq__cta-section {
  background-color: #001F3F;
  color: #fff;
  padding: 60px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-hello88-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: 700;
}

.page-resources-hello88-faq__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-resources-hello88-faq__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #001F3F;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-hello88-faq__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-hello88-faq__hero-title {
    font-size: 2.8em;
  }
  .page-resources-hello88-faq__section-title,
  .page-resources-hello88-faq__cta-title {
    font-size: 2.2em;
  }
  .page-resources-hello88-faq__category-heading {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-hello88-faq__hero-section,
  .page-resources-hello88-faq__content-section,
  .page-resources-hello88-faq__cta-section {
    padding: 40px 0;
  }
  .page-resources-hello88-faq__hero-title {
    font-size: 2.2em;
  }
  .page-resources-hello88-faq__hero-description {
    font-size: 1em;
  }
  .page-resources-hello88-faq__section-title,
  .page-resources-hello88-faq__cta-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-faq__faq-categories {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-hello88-faq__category-card {
    width: 80%;
    text-align: center;
  }
  .page-resources-hello88-faq__category-heading {
    font-size: 1.5em;
  }
  .page-resources-hello88-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-hello88-faq__accordion-content p {
    font-size: 0.95em;
    padding: 10px 0;
  }
  .page-resources-hello88-faq__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-hello88-faq__hero-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-faq__section-title,
  .page-resources-hello88-faq__cta-title {
    font-size: 1.6em;
  }
  .page-resources-hello88-faq__category-card {
    width: 90%;
  }
  .page-resources-hello88-faq__category-heading {
    font-size: 1.3em;
  }
  .page-resources-hello88-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-resources-hello88-faq__accordion-content {
    padding: 0 15px;
  }
  .page-resources-hello88-faq__cta-section {
    padding: 40px 15px;
  }
}