/* style/faq-customer-service.css */
.page-faq-customer-service {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-faq-customer-service__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #303747 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700; /* Accent border */
}

.page-faq-customer-service__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-customer-service__subtitle {
  font-size: 1.3em;
  color: #B0B0B0; /* Slightly lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-faq-customer-service__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A202C; /* Dark text on gold button */
  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-faq-customer-service__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-faq-customer-service__content-section {
  padding: 60px 0;
}

.page-faq-customer-service__accordion-group {
  margin-bottom: 40px;
}

.page-faq-customer-service__accordion-item {
  background-color: #2A303C; /* Slightly lighter dark background for items */
  border: 1px solid #3A404C;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq-customer-service__accordion-header {
  font-size: 1.6em;
  color: #FFD700; /* Gold for accordion headers */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2A303C;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-faq-customer-service__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-faq-customer-service__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq-customer-service__accordion-header:hover {
  background-color: #3A404C;
}

.page-faq-customer-service__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #1A202C; /* Primary dark background for content */
  color: #E0E0E0;
}

.page-faq-customer-service__accordion-content.active {
  max-height: 1000px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-faq-customer-service__accordion-content p {
  margin-bottom: 15px;
}

.page-faq-customer-service__accordion-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-faq-customer-service__accordion-content ul li {
  margin-bottom: 8px;
}

.page-faq-customer-service__sub-heading {
  font-size: 1.3em;
  color: #FFD700; /* Gold for sub-headings */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq-customer-service__inline-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for inline buttons */
  color: #1A202C; /* Dark text on gold button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-faq-customer-service__inline-button:hover {
  background-color: #e6c200;
}

.page-faq-customer-service__inline-button + .page-faq-customer-service__inline-button {
  margin-left: 10px;
}

.page-faq-customer-service__accordion-content a {
  color: #FFD700; /* Gold for links within content */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-faq-customer-service__accordion-content a:hover {
  color: #e6c200;
}

.page-faq-customer-service__contact-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.page-faq-customer-service__promo-card {
  background-color: #2A303C; /* Slightly lighter dark background for promo cards */
  border: 1px solid #3A404C;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-customer-service__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-faq-customer-service__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow effect */
}

.page-faq-customer-service__promo-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for promo titles */
  margin-bottom: 15px;
}

.page-faq-customer-service__promo-text {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-faq-customer-service__promo-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for promo buttons */
  color: #1A202C; /* Dark text on gold button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-faq-customer-service__promo-button:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-faq-customer-service__title {
    font-size: 2.8em;
  }
  .page-faq-customer-service__subtitle {
    font-size: 1.1em;
  }
  .page-faq-customer-service__accordion-header {
    font-size: 1.4em;
  }
  .page-faq-customer-service__promo-card {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-faq-customer-service__hero-section {
    padding: 60px 0;
  }
  .page-faq-customer-service__title {
    font-size: 2.2em;
  }
  .page-faq-customer-service__subtitle {
    font-size: 1em;
  }
  .page-faq-customer-service__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-faq-customer-service__accordion-content {
    padding: 15px 20px;
  }
  .page-faq-customer-service__promo-icon {
    width: 60px;
    height: 60px;
  }
  .page-faq-customer-service__promo-title {
    font-size: 1.5em;
  }
  .page-faq-customer-service__promo-text {
    font-size: 0.9em;
  }
  .page-faq-customer-service__cta-button, .page-faq-customer-service__inline-button, .page-faq-customer-service__promo-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-faq-customer-service__title {
    font-size: 1.8em;
  }
  .page-faq-customer-service__subtitle {
    font-size: 0.9em;
  }
  .page-faq-customer-service__accordion-header {
    font-size: 1em;
  }
  .page-faq-customer-service__promo-card {
    padding: 20px;
  }
}