        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;800&display=swap');

        :root {
            --primary: #ff3e3e;
            --accent: #6366f1;
            --bg: #050505;
            --surface: #121212;
            --border: rgba(255, 255, 255, 0.08);
            --glass: rgba(20, 20, 20, 0.7);
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* SSS ÖZEL STİLLERİ */
        .faq_wrapper {
            padding: 140px 5% 80px;
            min-height: 100vh;
        }

        .faq_container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero ve Arama Kutusu */
        .faq_hero {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq_hero h1 {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, #888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq_hero p {
            color: var(--text-muted);
            font-size: 1.15rem;
            margin-bottom: 35px;
        }

        .faq_search {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq_search input {
            width: 100%;
            padding: 20px 20px 20px 60px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: #fff;
            font-size: 1.1rem;
            outline: none;
            transition: 0.3s;
            backdrop-filter: blur(10px);
        }

        .faq_search input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 25px rgba(99, 102, 241, 0.15);
        }

        .faq_search svg {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            stroke: #666;
            transition: 0.3s;
        }

        .faq_search input:focus + svg { stroke: var(--accent); }

        /* Kategori Filtreleme Butonları */
        .faq_categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .cat_btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            color: var(--text-muted);
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cat_btn svg { width: 18px; stroke: currentColor; fill: none; }

        .cat_btn:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
        .cat_btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

        /* Akordeon Liste (Sorular) */
        .faq_list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq_item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq_item.hidden { display: none; } /* Arama/Filtre için */

        .faq_question {
            padding: 24px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            user-select: none;
            transition: 0.3s;
        }

        .faq_question:hover { background: rgba(255, 255, 255, 0.02); color: var(--accent); }

        .faq_icon {
            width: 24px; height: 24px; position: relative; flex-shrink: 0;
        }
        .faq_icon::before, .faq_icon::after {
            content: ''; position: absolute; background: #888; transition: 0.3s;
        }
        .faq_icon::before { top: 11px; left: 0; width: 24px; height: 2px; }
        .faq_icon::after { top: 0; left: 11px; width: 2px; height: 24px; }

        .faq_item.active .faq_icon::after { transform: rotate(90deg); opacity: 0; }
        .faq_item.active .faq_icon::before { background: var(--primary); }
        .faq_item.active .faq_question { color: var(--primary); background: rgba(255, 255, 255, 0.01); }

        .faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #0a0a0a;
        }

        .faq_answer_content {
            padding: 0 30px 25px;
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .faq_answer_content a { color: var(--accent); text-decoration: none; font-weight: 600; }
        .faq_answer_content a:hover { text-decoration: underline; }

        /* Boş Sonuç Ekranı */
        .no_results {
            text-align: center;
            padding: 50px;
            display: none;
            background: rgba(255,255,255,0.02);
            border: 1px dashed var(--border);
            border-radius: 20px;
        }
        .no_results svg { width: 50px; height: 50px; stroke: #555; margin-bottom: 15px; }
        .no_results h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
        .no_results p { color: #888; }

        /* Daha Fazla Destek CTA */
        .more_support {
            margin-top: 60px;
            background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.8) 100%);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .support_text h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
        .support_text p { color: var(--text-muted); margin: 0; }
        .btn_contact { background: var(--primary); color: #fff; text-decoration: none; padding: 14px 30px; border-radius: 12px; font-weight: 700; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .btn_contact:hover { background: #d32f2f; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 62, 62, 0.3); }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .faq_wrapper { padding: 110px 5% 80px; }
            .faq_hero h1 { font-size: 2.2rem; }
            .faq_question { padding: 20px; font-size: 1.05rem; }
            .faq_answer_content { padding: 0 20px 20px; }
            .more_support { flex-direction: column; text-align: center; padding: 30px 20px; }
            .faq_categories { gap: 10px; }
            .cat_btn { padding: 10px 20px; font-size: 0.9rem; }
        }