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

.page-resources-hello88-customer-support-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-hello88-customer-support-faq-article-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-hello88-customer-support-faq-hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f479a 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-customer-support-faq-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-hello88-customer-support-faq-hero-section > div {
  position: relative;
  z-index: 1;
}

.page-resources-hello88-customer-support-faq-main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Highlight with auxiliary color */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-hello88-customer-support-faq-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-hello88-customer-support-faq-btn-primary {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-hello88-customer-support-faq-btn-primary:hover {
  background-color: #e6a000;
  transform: translateY(-3px);
}

.page-resources-hello88-customer-support-faq-content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-resources-hello88-customer-support-faq-intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
}

.page-resources-hello88-customer-support-faq-section-title {
  font-size: 2.2em;
  color: #1A237E;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFC107;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-resources-hello88-customer-support-faq-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-hello88-customer-support-faq-channel-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-hello88-customer-support-faq-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-hello88-customer-support-faq-channel-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(26, 35, 126, 0.3));
}

.page-resources-hello88-customer-support-faq-channel-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-resources-hello88-customer-support-faq-channel-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-resources-hello88-customer-support-faq-btn-link {
  display: inline-block;
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-hello88-customer-support-faq-btn-link:hover {
  color: #e6a000;
  text-decoration: underline;
}

.page-resources-hello88-customer-support-faq-faq-container {
  margin-top: 40px;
}

.page-resources-hello88-customer-support-faq-faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-hello88-customer-support-faq-faq-question {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-hello88-customer-support-faq-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-resources-hello88-customer-support-faq-faq-item.active .page-resources-hello88-customer-support-faq-faq-question::after {
  transform: rotate(45deg);
}

.page-resources-hello88-customer-support-faq-faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-resources-hello88-customer-support-faq-faq-item.active .page-resources-hello88-customer-support-faq-faq-answer {
  max-height: 300px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
}

.page-resources-hello88-customer-support-faq-faq-answer p {
  margin-bottom: 15px;
}

.page-resources-hello88-customer-support-faq-btn-inline {
  display: inline-block;
  background-color: #1A237E;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-resources-hello88-customer-support-faq-btn-inline:hover {
  background-color: #3f479a;
}

.page-resources-hello88-customer-support-faq-bullet-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 20px;
  color: #444;
}

.page-resources-hello88-customer-support-faq-bullet-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-hello88-customer-support-faq-bullet-list strong {
  color: #1A237E;
}

.page-resources-hello88-customer-support-faq-final-cta {
  background-color: #1A237E;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-customer-support-faq-cta-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.page-resources-hello88-customer-support-faq-cta-content h3 {
  font-size: 2em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-resources-hello88-customer-support-faq-cta-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-resources-hello88-customer-support-faq-back-link {
  text-align: center;
  margin-top: 50px;
}

.page-resources-hello88-customer-support-faq-btn-text {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-hello88-customer-support-faq-btn-text:hover {
  color: #FFC107;
}

.page-resources-hello88-customer-support-faq-cta-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f4f8; /* Light background for banner */
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-resources-hello88-customer-support-faq-banner-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-hello88-customer-support-faq-banner-content h3 {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-resources-hello88-customer-support-faq-banner-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-resources-hello88-customer-support-faq-btn-secondary {
    display: inline-block;
    background-color: #1A237E;
    color: #FFC107;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-hello88-customer-support-faq-btn-secondary:hover {
    background-color: #3f479a;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-hello88-customer-support-faq-main-title {
    font-size: 2.5em;
  }

  .page-resources-hello88-customer-support-faq-subtitle {
    font-size: 1.2em;
  }

  .page-resources-hello88-customer-support-faq-section-title {
    font-size: 1.8em;
  }

  .page-resources-hello88-customer-support-faq-channels-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-hello88-customer-support-faq-channel-card {
    padding: 25px;
  }

  .page-resources-hello88-customer-support-faq-faq-question {
    font-size: 1.1em;
  }

  .page-resources-hello88-customer-support-faq-final-cta {
    padding: 30px;
  }

  .page-resources-hello88-customer-support-faq-cta-content h3 {
    font-size: 1.5em;
  }

  .page-resources-hello88-customer-support-faq-cta-content p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-hello88-customer-support-faq-main-title {
    font-size: 2em;
  }

  .page-resources-hello88-customer-support-faq-hero-section {
    padding: 60px 0;
  }

  .page-resources-hello88-customer-support-faq-btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-hello88-customer-support-faq-section-title {
    font-size: 1.5em;
  }

  .page-resources-hello88-customer-support-faq-channel-icon {
    width: 50px;
    height: 50px;
  }

  .page-resources-hello88-customer-support-faq-channel-title {
    font-size: 1.2em;
  }

  .page-resources-hello88-customer-support-faq-faq-question {
    font-size: 1em;
  }

  .page-resources-hello88-customer-support-faq-cta-banner {
      padding: 20px;
  }

  .page-resources-hello88-customer-support-faq-banner-content h3 {
      font-size: 1.4em;
  }

  .page-resources-hello88-customer-support-faq-banner-content p {
      font-size: 0.9em;
  }

  .page-resources-hello88-customer-support-faq-btn-secondary {
      padding: 10px 20px;
      font-size: 0.9em;
  }
}