/* FAQ CSS */

/* GENEL KAPSAYICI */
.faq-container {
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Quicksand', Arial, sans-serif;
}

/* HER BİR SORU-CEVAP BLOĞU */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

/* SORU BAŞLIĞI */
.faq-question {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.5rem;
    color: #4877BD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2f4f9a;
}

/* CEVAP ALANI */
.faq-answer {
    margin-top: 8px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    max-height: 8000px; /* Açıkken yüksek */
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.faq-answer.closed {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

/* AÇ/KAPA İKONU */
.faq-toggle-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-toggle-icon.closed {
    transform: rotate(-90deg);
}

/* LISTE STİLLERİ */
.faq-answer ul,
.faq-answer ol {
    padding-left: 1.2em;
    margin-bottom: 10px;
}

/* TABLO STİLLERİ */
.faq-answer table {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
}

.faq-answer th,
.faq-answer td {
    border: 1px solid #ccc;
    padding: 6px 10px;
    text-align: left;
}

.faq-answer th {
    background-color: #f5f8ff;
}