/* FAQ Page Styles */
.faq-hero {
  background: linear-gradient(135deg, #05437a, #0A6EBD);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}
.faq-hero h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.faq-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section {
  padding: 40px 0 60px;
  background: #f5f7fa;
}
.faq-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.faq-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}
.faq-sidebar h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.faq-nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.faq-nav-link:hover {
  background: #e8eef5;
  color: #0A6EBD;
}
.faq-nav-link.active {
  background: #0A6EBD;
  color: #fff;
}

.faq-content {
  flex: 1;
  min-width: 0;
}
.faq-category {
  margin-bottom: 40px;
}
.faq-category h2 {
  font-size: 1.25rem;
  color: #05437a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f8f9fb;
}
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #0A6EBD;
  border-radius: 2px;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 8px;
  left: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 2px;
  left: 8px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.faq-answer.open {
  padding-bottom: 16px;
}
.faq-answer p {
  margin: 10px 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}
.faq-answer ul,
.faq-answer ol {
  margin: 10px 0;
  padding-left: 20px;
}
.faq-answer li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
}
.faq-answer a {
  color: #0A6EBD;
  text-decoration: none;
  font-weight: 500;
}
.faq-answer a:hover {
  text-decoration: underline;
}

.faq-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.85rem;
}
.faq-comparison th {
  background: #05437a;
  color: #fff;
  padding: 8px 12px;
  text-align: left;
  font-weight: 500;
}
.faq-comparison td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
}
.faq-comparison tr:nth-child(even) td {
  background: #f8f9fb;
}

.faq-cta {
  background: linear-gradient(135deg, #05437a, #0A6EBD);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}
.faq-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.faq-cta p {
  opacity: 0.9;
  margin-bottom: 16px;
}
.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #0A6EBD;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
  transition: transform 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-block;
  padding: 10px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
  transition: transform 0.2s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-layout {
    flex-direction: column;
  }
  .faq-sidebar {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  .faq-sidebar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .faq-nav-link {
    margin-bottom: 0;
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  .faq-hero h1 {
    font-size: 1.5rem;
  }
}
