/* style/resources-f88bet-customer-support.css */

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

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

/* Hero Section */
.page-resources-f88bet-customer-support__hero {
  background-color: #0A2E50; /* Main brand color */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-f88bet-customer-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
}

.page-resources-f88bet-customer-support__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-resources-f88bet-customer-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #0A2E50; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  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-f88bet-customer-support__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

/* General Section Styles */
.page-resources-f88bet-customer-support__content-section,
.page-resources-f88bet-customer-support__faq-section,
.page-resources-f88bet-customer-support__commitment-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-resources-f88bet-customer-support__section-title {
  font-size: 2.2em;
  color: #0A2E50; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-f88bet-customer-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Contact Channels */
.page-resources-f88bet-customer-support__contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-f88bet-customer-support__channel-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-f88bet-customer-support__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-resources-f88bet-customer-support__channel-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-resources-f88bet-customer-support__channel-title {
  font-size: 1.5em;
  color: #0A2E50;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-f88bet-customer-support__channel-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-f88bet-customer-support__channel-button {
  display: inline-block;
  background-color: #0A2E50; /* Main brand color for secondary buttons */
  color: #FFD700; /* Accent color for text */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #0A2E50;
}

.page-resources-f88bet-customer-support__channel-button:hover {
  background-color: #FFD700; /* Accent color on hover */
  color: #0A2E50; /* Main brand color for text */
  border-color: #FFD700;
}

/* FAQ Section */
.page-resources-f88bet-customer-support__faq-section {
  background-color: #eef1f5;
}

.page-resources-f88bet-customer-support__faq-items {
  margin-top: 40px;
}

.page-resources-f88bet-customer-support__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-resources-f88bet-customer-support__faq-question {
  font-size: 1.2em;
  color: #0A2E50;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-f88bet-customer-support__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-f88bet-customer-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-f88bet-customer-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-f88bet-customer-support__faq-answer.open {
  max-height: 300px; /* Adjust based on expected content */
  padding-top: 10px;
}

.page-resources-f88bet-customer-support__inline-link {
  color: #0A2E50;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-f88bet-customer-support__inline-link:hover {
  color: #FFD700;
}

/* Commitment Section */
.page-resources-f88bet-customer-support__commitment-section {
  background-color: #0A2E50; /* Main brand color */
  color: #FFFFFF;
}

.page-resources-f88bet-customer-support__commitment-section .page-resources-f88bet-customer-support__section-title {
  color: #FFD700;
}

.page-resources-f88bet-customer-support__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-f88bet-customer-support__commitment-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-f88bet-customer-support__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(1) saturate(5) hue-rotate(20deg) brightness(1.2); /* Make icons golden */
}

.page-resources-f88bet-customer-support__commitment-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-f88bet-customer-support__commitment-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Bottom CTA */
.page-resources-f88bet-customer-support__cta-bottom {
  background-color: #FFD700; /* Accent color for bottom CTA */
  color: #0A2E50;
  padding: 80px 0;
  text-align: center;
}

.page-resources-f88bet-customer-support__cta-bottom .page-resources-f88bet-customer-support__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #0A2E50;
  font-weight: bold;
}

.page-resources-f88bet-customer-support__cta-bottom .page-resources-f88bet-customer-support__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-resources-f88bet-customer-support__cta-button--secondary {
  background-color: #0A2E50;
  color: #FFD700;
  margin-left: 20px;
  border: 1px solid #0A2E50;
}

.page-resources-f88bet-customer-support__cta-button--secondary:hover {
  background-color: #335a80;
  color: #FFD700;
  border-color: #335a80;
}

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

  .page-resources-f88bet-customer-support__hero-subtitle,
  .page-resources-f88bet-customer-support__section-intro,
  .page-resources-f88bet-customer-support__cta-bottom .page-resources-f88bet-customer-support__cta-text {
    font-size: 1em;
  }

  .page-resources-f88bet-customer-support__section-title,
  .page-resources-f88bet-customer-support__cta-bottom .page-resources-f88bet-customer-support__cta-title {
    font-size: 1.8em;
  }

  .page-resources-f88bet-customer-support__contact-channels,
  .page-resources-f88bet-customer-support__commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-f88bet-customer-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-resources-f88bet-customer-support__cta-button--secondary {
    margin-top: 15px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-f88bet-customer-support__hero,
  .page-resources-f88bet-customer-support__content-section,
  .page-resources-f88bet-customer-support__faq-section,
  .page-resources-f88bet-customer-support__commitment-section,
  .page-resources-f88bet-customer-support__cta-bottom {
    padding: 40px 0;
  }

  .page-resources-f88bet-customer-support__hero-title {
    font-size: 1.8em;
  }
  .page-resources-f88bet-customer-support__section-title,
  .page-resources-f88bet-customer-support__cta-bottom .page-resources-f88bet-customer-support__cta-title {
    font-size: 1.6em;
  }

  .page-resources-f88bet-customer-support__cta-button {
    width: 100%;
    margin-bottom: 10px;
  }
}