/* SEO: FAQ visibili nel DOM, allineate al FAQPage schema */
.faq-section {
  margin: 2.5rem 0 2rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid #e2e8f0;
}
.faq-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1.25rem;
}
.faq-section details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 0.6rem;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.faq-section details[open] {
  border-color: #ff9900;
  box-shadow: 0 2px 6px rgba(26, 54, 93, 0.06);
}
.faq-section details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem 0.95rem 2.5rem;
  position: relative;
  font-weight: 600;
  color: #1a365d;
  font-size: 1rem;
  line-height: 1.4;
  user-select: none;
}
.faq-section details summary::-webkit-details-marker { display: none; }
.faq-section details summary::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ff9900;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq-section details[open] summary::before {
  transform: translateY(-50%) rotate(180deg);
}
.faq-section details summary:hover {
  background: #f8fafc;
}
.faq-section details > p,
.faq-section details > div {
  padding: 0 1rem 1.05rem 2.5rem;
  margin: 0;
  color: #334155;
  line-height: 1.65;
  font-size: 0.96rem;
}
@media (max-width: 575.98px) {
  .faq-section h2 { font-size: 1.3rem; }
  .faq-section details summary { font-size: 0.95rem; padding-right: 0.75rem; }
}
