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

.page-support-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-support-faq__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-support-faq__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-support-faq__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-support-faq__btn--primary {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-support-faq__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-support-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.page-support-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* FAQ Section */
.page-support-faq__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-support-faq__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-support-faq__faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-support-faq__faq-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.page-support-faq__faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.page-support-faq__faq-question {
  font-size: 1.5em;
  color: #003366;
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-color: #f0f4f7;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-support-faq__faq-question:hover {
  background-color: #e5eaf0;
}

.page-support-faq__faq-question::after {
  content: '+';
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-support-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-faq__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fff;
  color: #444;
}

.page-support-faq__faq-answer.active {
  max-height: 1000px; /* Adjust based on max content height */
  padding: 30px;
}

.page-support-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-support-faq__faq-answer ol, .page-support-faq__faq-answer ul {
  margin-left: 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-support-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-support-faq__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support-faq__btn--accent {
  background-color: #CC0000; /* Red for emphasis on promotions */
  color: #fff;
  margin-top: 15px;
}

.page-support-faq__btn--accent:hover {
  background-color: #a30000;
  transform: translateY(-3px);
}

/* Call to Action Section */
.page-support-faq__cta-section {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-support-faq__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-support-faq__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support-faq__cta-text {
  font-size: 1.3em;
  color: #e0e0e0;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-support-faq__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  min-width: 250px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support-faq__hero-title {
    font-size: 2.8em;
  }

  .page-support-faq__hero-subtitle {
    font-size: 1.2em;
  }

  .page-support-faq__section-title {
    font-size: 2.2em;
  }

  .page-support-faq__cta-title {
    font-size: 2.5em;
  }

  .page-support-faq__cta-text {
    font-size: 1.1em;
  }

  .page-support-faq__faq-question {
    font-size: 1.3em;
    padding: 20px 25px;
  }

  .page-support-faq__faq-answer {
    padding: 20px 25px;
  }
}

@media (max-width: 768px) {
  .page-support-faq__hero-title {
    font-size: 2.2em;
  }

  .page-support-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-support-faq__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-support-faq__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-support-faq__section-title {
    font-size: 1.8em;
  }

  .page-support-faq__cta-title {
    font-size: 2em;
  }

  .page-support-faq__cta-text {
    font-size: 1em;
  }

  .page-support-faq__faq-question {
    font-size: 1.2em;
    padding: 18px 20px;
  }

  .page-support-faq__faq-answer p, .page-support-faq__faq-answer ol, .page-support-faq__faq-answer ul {
    font-size: 1em;
  }

  .page-support-faq__faq-answer {
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .page-support-faq__hero-title {
    font-size: 1.8em;
  }

  .page-support-faq__hero-subtitle {
    font-size: 0.9em;
  }

  .page-support-faq__section-title {
    font-size: 1.6em;
  }

  .page-support-faq__cta-title {
    font-size: 1.8em;
  }

  .page-support-faq__cta-text {
    font-size: 0.9em;
  }

  .page-support-faq__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-support-faq__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-support-faq__faq-answer {
    padding: 15px;
  }
}