.faq-section {
  --brand-blue: #000F46;
  --brand-gold: #D4AF37;
  --text-black: #000000;
  --bg-white: #ffffff;
  --border-color: #E5E7EB;
  --font-heading: 'Bodoni Moda', serif;
  --font-body: 'Open Sans', sans-serif;
  background-color: var(--bg-white);
  padding: 100px 0;
  display: flex;
  justify-content: center;
}
.faq-container {
  width: 90vw;
  max-width: 1440px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--brand-blue);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-weight: 400;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin: 0;
  font-weight: 500;
}
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--brand-blue);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-content {
  padding: 0 10px 40px 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
.faq-content p { margin: 0 0 12px 0; }
@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-question h3 { font-size: 1.2rem; }
  .faq-question { padding: 20px 0; }
  .faq-header h2 { font-size: 2rem; }
}
