 /* SENİN CSS DOSYAN */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        .be-login-scope .c-layout-page {
            background: linear-gradient(135deg, #EBF5FF 0%, #FFFFFF 50%, #E8E9FF 100%) !important;
            background-attachment: fixed !important;
            font-family: 'Inter', sans-serif !important;
            color: #0F172A !important;
            min-height: 100vh;
        }
        .be-login-scope .c-layout-page .container {
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 24px 20px 24px;
        }
        .be-login-scope .c-layout-page .container img.be-logo {
            width: 95px;
            height: 95px;
            filter: drop-shadow(0 4px 6px rgba(0, 29, 108, 0.15));
            transition: transform 0.2s;
            display: block;
            margin: 0 auto 30px auto;
        }
        .be-login-scope .c-layout-page .container img:hover { transform: scale(1.05); }
        .be-login-scope .c-content-box {
            background: transparent !important;
            padding: 40px 0 96px 0 !important;
            position: relative;
            z-index: 20;
        }
        .be-login-scope .panel.panel-default.c-panel {
            background: linear-gradient(135deg, rgba(0,29,108,0.4) 0%, rgba(0,51,153,0.2) 50%, rgba(0,29,108,0.4) 100%) !important;
            padding: 1px !important;
            border-radius: 24px !important;
            border: none !important;
            box-shadow: 0 0 24px -16px rgba(0, 29, 108, 0.25) !important;
            margin-bottom: 24px;
            /* Animation */
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        .be-login-scope .panel-body.c-panel-body {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px) !important;
            border: 1px solid rgba(0, 29, 108, 0.2) !important;
            border-radius: 23px !important;
            padding: 40px !important;
            box-shadow: none !important;
        }
        .be-login-scope .c-content-title-1 h3 {
            font-size: 28px !important;
            font-weight: 700 !important;
            color: #0F172A !important;
            margin-bottom: 16px !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .be-login-scope .c-content-title-1 .c-line-left {
            background: linear-gradient(90deg, #001D6C 0%, #003399 50%, rgba(0,29,108,0.1) 100%) !important;
            height: 4px !important;
            width: 80px !important;
            border-radius: 2px !important;
            margin-bottom: 32px !important;
        }
        .be-login-scope .c-layout-page::before {
            content: '';
            position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 1; opacity: 0.4;
            background-image: linear-gradient(rgba(0, 29, 108, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 29, 108, 0.03) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        /* TIPOGRAFİ */
        .legal-content h4 { color: #001D6C; font-weight: 700; font-size: 18px; margin-top: 30px; margin-bottom: 12px; }
        .legal-content p, .legal-content li { font-size: 15px; line-height: 1.7; color: #475569; margin-bottom: 15px; }
        .legal-content ul { padding-left: 20px; margin-bottom: 20px; }
        .legal-content a { color: #003399; text-decoration: none; font-weight: 600; }
        .legal-content a:hover { text-decoration: underline; }
        
        /* RTL & TABS */
        .rtl-content { direction: rtl; text-align: right; }
        .rtl-content .c-content-title-1 .c-line-left { margin-right: 0; margin-left: auto; }
        .rtl-content .c-content-title-1 h3 { flex-direction: row-reverse; }
        
        .nav-tabs-custom { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; z-index: 50; position: relative; }
        .nav-btn { background: #fff; border: 1px solid #CBD5E1; padding: 10px 24px; border-radius: 12px; cursor: pointer; font-weight: 600; color: #64748B; transition: all 0.2s; font-family: 'Inter', sans-serif; }
        .nav-btn.active { background: #001D6C; color: #fff; border-color: #001D6C; box-shadow: 0 8px 16px -4px rgba(0, 29, 108, 0.3); }
        .content-section { display: none; }
        .content-section.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }