/**
 * FAQ Suzuki Style
 */
.faq-hero {
  background: linear-gradient(135deg, #00368F 0%, #001151 100%);
  color: white;
  padding: 90px 0;
  text-align: center;
  margin-bottom: 70px;
}

.faq-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'SuzukiPROHeadline', sans-serif;
}

.faq-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 70px;
}

.faq-section {
  margin-bottom: 60px;
}

.faq-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #00368F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00368F;
  display: inline-block;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 28px 34px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #00368F;
}

.faq-question.active {
  color: #00368F;
  background: #f8f9fa;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #00368F;
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq-question.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height, padding;
}

.faq-answer.active {
  max-height: 2000px;
  padding: 24px 40px 34px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

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

.faq-answer a {
  color: #00368F;
  text-decoration: none;
  font-weight: 500;
}

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

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.faq-answer li {
  padding: 12px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.faq-answer li::before {
  content: '•';
  color: #00368F;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
  top: 8px;
}

.faq-answer small {
  font-size: 13px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 60px 0;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-question {
    padding: 22px 20px;
    font-size: 15px;
  }

  .faq-answer.active {
    padding: 0 20px 22px;
  }
}
