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

.page-resources-five88-faq-customer-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-five88-faq-customer-support__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-five88-faq-customer-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,gold_red]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-five88-faq-customer-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  color: #FFFFFF; /* Ensures high contrast against the gradient */
}

.page-resources-five88-faq-customer-support__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #F0F0F0; /* Slightly lighter for readability */
}

.page-resources-five88-faq-customer-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary brand color */
  color: #8B0000; /* High contrast text for the button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-resources-five88-faq-customer-support__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

/* General Section Styling */
.page-resources-five88-faq-customer-support__introduction-section,
.page-resources-five88-faq-customer-support__faq-section,
.page-resources-five88-faq-customer-support__support-channels-section,
.page-resources-five88-faq-customer-support__responsible-gambling-section,
.page-resources-five88-faq-customer-support__final-cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.page-resources-five88-faq-customer-support__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Secondary brand color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-five88-faq-customer-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary brand color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-five88-faq-customer-support__introduction-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #555;
}

/* FAQ Section */
.page-resources-five88-faq-customer-support__faq-category {
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.page-resources-five88-faq-customer-support__faq-category:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.page-resources-five88-faq-customer-support__category-title {
  font-size: 2em;
  color: #8B0000; /* Secondary brand color */
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 5px solid #FFD700; /* Primary brand color accent */
}

.page-resources-five88-faq-customer-support__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-resources-five88-faq-customer-support__faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-resources-five88-faq-customer-support__question {
  font-size: 1.4em;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-five88-faq-customer-support__question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-five88-faq-customer-support__faq-item.active .page-resources-five88-faq-customer-support__question::after {
  transform: rotate(45deg);
}

.page-resources-five88-faq-customer-support__answer {
  font-size: 1.1em;
  color: #555;
  margin-top: 0;
  padding-left: 10px;
  border-left: 3px solid #eee;
  display: none; /* Hidden by default, toggled by JS */
}

.page-resources-five88-faq-customer-support__faq-item.active .page-resources-five88-faq-customer-support__answer {
  display: block;
}

.page-resources-five88-faq-customer-support__inline-link {
  color: #8B0000; /* Secondary brand color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-five88-faq-customer-support__inline-link:hover {
  color: #FFD700; /* Primary brand color on hover */
  text-decoration: underline;
}

/* Support Channels Section */
.page-resources-five88-faq-customer-support__channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-five88-faq-customer-support__channel-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-five88-faq-customer-support__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-resources-five88-faq-customer-support__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-resources-five88-faq-customer-support__channel-title {
  font-size: 1.8em;
  color: #8B0000; /* Secondary brand color */
  margin-bottom: 15px;
}

.page-resources-five88-faq-customer-support__channel-description {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
}

.page-resources-five88-faq-customer-support__email-address,
.page-resources-five88-faq-customer-support__hotline-number {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
}

.page-resources-five88-faq-customer-support__channel-button {
  display: inline-block;
  background-color: #8B0000; /* Secondary brand color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-five88-faq-customer-support__channel-button:hover {
  background-color: #b30000; /* Darker red on hover */
}

.page-resources-five88-faq-customer-support__additional-support {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #777;
}

/* Responsible Gambling Section */
.page-resources-five88-faq-customer-support__responsible-gambling-section {
  background-color: #f0f0f0;
}

.page-resources-five88-faq-customer-support__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-resources-five88-faq-customer-support__responsible-list li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #444;
}

.page-resources-five88-faq-customer-support__list-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15));
}

.page-resources-five88-faq-customer-support__responsible-list strong {
  color: #8B0000;
}

/* Final CTA Section */
.page-resources-five88-faq-customer-support__final-cta-section {
  text-align: center;
  background-color: #FFD700; /* Primary brand color */
  color: #8B0000; /* High contrast text */
  padding: 80px 0;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-five88-faq-customer-support__final-cta-section .page-resources-five88-faq-customer-support__section-title {
  color: #8B0000;
}

.page-resources-five88-faq-customer-support__final-cta-section .page-resources-five88-faq-customer-support__section-title::after {
  background-color: #8B0000;
}

.page-resources-five88-faq-customer-support__final-cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.page-resources-five88-faq-customer-support__final-cta-section .page-resources-five88-faq-customer-support__cta-button {
  background-color: #8B0000; /* Secondary brand color */
  color: #FFD700; /* High contrast text for the button */
}

.page-resources-five88-faq-customer-support__final-cta-section .page-resources-five88-faq-customer-support__cta-button:hover {
  background-color: #b30000; /* Darker red on hover */
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-five88-faq-customer-support__hero-title {
    font-size: 2.5em;
  }

  .page-resources-five88-faq-customer-support__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-five88-faq-customer-support__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-resources-five88-faq-customer-support__section-title {
    font-size: 2em;
  }

  .page-resources-five88-faq-customer-support__category-title {
    font-size: 1.7em;
  }

  .page-resources-five88-faq-customer-support__question {
    font-size: 1.2em;
  }

  .page-resources-five88-faq-customer-support__answer {
    font-size: 1em;
  }

  .page-resources-five88-faq-customer-support__channels-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-five88-faq-customer-support__responsible-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-resources-five88-faq-customer-support__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-five88-faq-customer-support__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-five88-faq-customer-support__section-title {
    font-size: 1.8em;
  }

  .page-resources-five88-faq-customer-support__category-title {
    font-size: 1.5em;
  }

  .page-resources-five88-faq-customer-support__question {
    font-size: 1.1em;
  }

  .page-resources-five88-faq-customer-support__channel-title {
    font-size: 1.5em;
  }
}