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

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A2463, #3a5c9d);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-faq__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-faq__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-faq__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq__button--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-faq__button--secondary:hover {
  background-color: #071a47;
  transform: translateY(-2px);
}

.page-faq__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-faq__accordion-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-faq__accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-faq__accordion-question {
  padding: 20px 25px;
  background-color: #0A2463;
  color: #FFD700;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-question.active {
  background-color: #1a3c7c;
}

.page-faq__accordion-question.active::after {
  transform: rotate(45deg);
}

.page-faq__accordion-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  display: none;
  color: #555;
}

.page-faq__accordion-answer p {
  margin-bottom: 15px;
}

.page-faq__accordion-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__accordion-answer a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-faq__accordion-answer a:hover {
  text-decoration: underline;
}

.page-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-faq__image--small {
  max-width: 400px;
  display: block;
  margin: 20px auto 0;
}

.page-faq__cta-section {
  background-color: #0A2463;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-faq__cta-content {
  max-width: 900px;
}

.page-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-faq__cta-section .page-faq__button {
  margin: 0 10px;
}

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

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

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

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

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

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

  .page-faq__cta-description {
    font-size: 0.95em;
  }

  .page-faq__cta-section .page-faq__button {
    display: block;
    margin: 15px auto;
  }
}

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

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

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

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

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

  .page-faq__accordion-answer {
    font-size: 0.9em;
    padding: 12px 15px;
  }

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

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