/* style/resources-99win-customer-service-faqs-and-solutions.css */
.page-resources-99win-customer-service-faqs-and-solutions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2A3A; /* Main dark background */
  line-height: 1.6;
}

.page-resources-99win-customer-service-faqs-and-solutions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-99win-customer-service-faqs-and-solutions__hero-section {
  background: linear-gradient(135deg, #1A2A3A, #3A4A5A);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-99win-customer-service-faqs-and-solutions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-99win-customer-service-faqs-and-solutions__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-resources-99win-customer-service-faqs-and-solutions__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 15px 30px;
  border-radius: 50px;
  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-99win-customer-service-faqs-and-solutions__hero-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-resources-99win-customer-service-faqs-and-solutions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-resources-99win-customer-service-faqs-and-solutions__section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-section {
  padding: 60px 0;
  background-color: #2A3A4A;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-text {
  flex: 2;
  min-width: 300px;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-text p {
  margin-bottom: 15px;
  color: #D0D0D0;
  font-size: 1.05em;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-resources-99win-customer-service-faqs-and-solutions__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-section {
  padding: 60px 0;
  background-color: #1A2A3A;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-category {
  background-color: #2A3A4A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-question {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-question:hover {
  color: #FFD700;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-answer {
  color: #D0D0D0;
  font-size: 1.05em;
  padding: 0 15px 15px 0;
  display: none; /* Hidden by default, shown by JS */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding: 0 15px 15px 0;
  display: block;
}

.page-resources-99win-customer-service-faqs-and-solutions__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-99win-customer-service-faqs-and-solutions__contact-promo {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #3A4A5A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-99win-customer-service-faqs-and-solutions__contact-promo p {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-resources-99win-customer-service-faqs-and-solutions__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
}

.page-resources-99win-customer-service-faqs-and-solutions__contact-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-resources-99win-customer-service-faqs-and-solutions__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-resources-99win-customer-service-faqs-and-solutions__related-resources {
  padding: 60px 0;
  background-color: #2A3A4A;
  text-align: center;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-item {
  background-color: #1A2A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-item p {
  color: #D0D0D0;
  margin-bottom: 20px;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-99win-customer-service-faqs-and-solutions__resource-link:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-99win-customer-service-faqs-and-solutions__hero-title {
    font-size: 2.5em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__section-title {
    font-size: 2em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__intro-content {
    flex-direction: column;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__faq-category-title {
    font-size: 1.8em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-99win-customer-service-faqs-and-solutions__hero-title {
    font-size: 2em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__section-title {
    font-size: 1.8em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__faq-category-title {
    font-size: 1.5em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__faq-question {
    font-size: 1em;
    padding: 10px 0;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__faq-answer {
    font-size: 0.95em;
  }
  .page-resources-99win-customer-service-faqs-and-solutions__hero-button,
  .page-resources-99win-customer-service-faqs-and-solutions__contact-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}