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

.page-support-faq__hero-section {
  background: linear-gradient(135deg, #0A244A 0%, #3a5c8e 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-faq__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-support-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

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

.page-support-faq__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support-faq__main-content {
  padding: 60px 0;
}

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

.page-support-faq__section-title {
  font-size: 2em;
  color: #0A244A; /* Dark blue for section title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-support-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-support-faq__accordion {
  margin-top: 30px;
}

.page-support-faq__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-support-faq__accordion-header {
  display: block;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A244A; /* Dark blue for header */
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-support-faq__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700; /* Gold plus sign */
  transition: transform 0.3s ease;
}

.page-support-faq__accordion-item[open] .page-support-faq__accordion-header {
  background-color: #f0f0f0;
}

.page-support-faq__accordion-item[open] .page-support-faq__accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-support-faq__accordion-content {
  padding: 20px 25px;
  border-top: 1px solid #eee;
  color: #555;
  font-size: 1em;
  background-color: #fafafa;
}

.page-support-faq__accordion-content p {
  margin-bottom: 1em;
}

.page-support-faq__accordion-content ul,
.page-support-faq__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 1em;
}

.page-support-faq__accordion-content li {
  margin-bottom: 0.5em;
}

.page-support-faq__accordion-content h3 {
  color: #0A244A;
  font-size: 1.3em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

.page-support-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support-faq__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #0A244A; /* Dark blue background for CTA */
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support-faq__cta-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 15px;
}

.page-support-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-support-faq__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support-faq__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support-faq__hero-title {
    font-size: 2em;
  }

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

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

  .page-support-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-support-faq__accordion-header::after {
    right: 20px;
  }

  .page-support-faq__accordion-content {
    padding: 15px 20px;
  }

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

  .page-support-faq__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support-faq__hero-section {
    padding: 60px 15px;
  }

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

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

  .page-support-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-support-faq__accordion-header::after {
    right: 15px;
    font-size: 1.2em;
  }

  .page-support-faq__accordion-content {
    padding: 12px 15px;
  }

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

  .page-support-faq__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}