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

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

.page-faq-technical__hero {
  background: linear-gradient(135deg, #0A2342, #1a3a5e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq-technical__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400;
  font-weight: bold;
}

.page-faq-technical__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-faq-technical__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-faq-technical__btn--primary {
  background-color: #E0B400;
  color: #0A2342;
}

.page-faq-technical__btn--primary:hover {
  background-color: #f0c52a;
  transform: translateY(-2px);
}

.page-faq-technical__btn--secondary {
  background-color: #0A2342;
  color: #fff;
  border: 2px solid #E0B400;
}

.page-faq-technical__btn--secondary:hover {
  background-color: #1a3a5e;
  transform: translateY(-2px);
}

.page-faq-technical__btn--accent {
  background-color: #0A2342;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-faq-technical__btn--accent:hover {
  background-color: #1a3a5e;
  transform: translateY(-2px);
}

.page-faq-technical__content-section {
  padding: 60px 0;
  background-color: #fff;
}

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

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

.page-faq-technical__table-of-contents {
  background-color: #f2f2f2;
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-faq-technical__table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.page-faq-technical__table-of-contents li {
  margin-bottom: 5px;
}

.page-faq-technical__toc-link {
  display: block;
  padding: 8px 15px;
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
  color: #0A2342;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.page-faq-technical__toc-link:hover {
  background-color: #E0B400;
  color: #0A2342;
}

.page-faq-technical__faq-category {
  margin-bottom: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-faq-technical__category-title {
  font-size: 2em;
  color: #0A2342;
  margin-bottom: 30px;
  text-align: center;
}

.page-faq-technical__faq-item {
  background-color: #fefefe;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-faq-technical__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
}

.page-faq-technical__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-faq-technical__faq-answer {
  padding: 25px;
  color: #555;
  display: none; /* Hidden by default */
  border-radius: 0 0 8px 8px;
}

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

.page-faq-technical__faq-answer ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-faq-technical__faq-answer li {
  margin-bottom: 8px;
}

.page-faq-technical__text-link {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
}

.page-faq-technical__text-link:hover {
  text-decoration: underline;
}

.page-faq-technical__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-faq-technical__image--small {
  max-width: 400px;
}

.page-faq-technical__cta-section {
  background: linear-gradient(135deg, #0A2342, #1a3a5e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-faq-technical__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 20px;
}

.page-faq-technical__cta-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-faq-technical__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-faq-technical__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-faq-technical__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-faq-technical__table-of-contents ul {
    grid-template-columns: 1fr;
  }

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

  .page-faq-technical__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-faq-technical__btn {
    width: 80%;
    max-width: 300px;
  }
}

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

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

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

  .page-faq-technical__category-title {
    font-size: 1.6em;
  }

  .page-faq-technical__faq-question {
    font-size: 1.1em;
  }

  .page-faq-technical__faq-answer {
    padding: 15px;
  }

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