        /* SSS için özel stiller */
        .faq-item {
            margin-bottom: 16px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #eef2f7;
            transition: box-shadow 0.2s;
        }
        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .faq-question {
            background: white;
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.05rem;
            color: #1e466e;
            transition: background 0.2s;
            user-select: none;
        }
        .faq-question:hover {
            background: #f8fafc;
        }
        .faq-question i {
            color: #16a085;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        .faq-question .fa-chevron-down {
            transition: transform 0.3s;
        }
        .faq-item.active .faq-question .fa-chevron-down {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
            background: #fcfcfd;
            color: #334155;
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 16px 24px 24px 24px;
        }
        .faq-answer p {
            margin: 0;
            font-size: 0.98rem;
        }
        .faq-answer ul {
            margin: 8px 0 0 20px;
            padding: 0;
        }
        .faq-answer ul li {
            margin-bottom: 4px;
        }
        .faq-answer a {
            color: #1e466e;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .faq-answer a:hover {
            color: #16a085;
        }
        @media (max-width: 768px) {
            .faq-question {
                font-size: 0.95rem;
                padding: 14px 18px;
            }
            .faq-answer {
                padding: 0 18px;
                font-size: 0.9rem;
            }
            .faq-item.active .faq-answer {
                padding: 12px 18px 18px 18px;
            }
        }