/* --- SSS (Sıkça Sorulan Sorular) Bölümü Stilleri --- */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 700px;
  text-align: center;
  margin: 30px auto 0 auto;
}

.faq-section {
  padding: 5%;
}

.faq-accordion {
  max-width: 1400px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item:hover {
  border-color: rgba(184, 115, 51, 0.5); /* --dynamic-color'ın bir tonu */
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-question span {
  transition: color 0.3s ease;
}

.faq-question:hover span {
  background: var(--dynamic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #DA8E50; /* Accent color */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.5s ease;
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1rem;
}

/* Aktif (açık) durumdaki soru stilleri */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 100%; /* Cevabınızın uzunluğuna göre bu değeri artırabilirsiniz */
}