/* legal-kvkk.css — CSP Faz 2: kvkk-aydinlatma-metni.html icindeki inline <style> buraya tasindi.
   style-src 'self' (unsafe-inline YOK) icin gerekli. */
:root {
            --bg-primary: #fef7f0;
            --bg-card: #ffffff;
            --text-primary: #1a1a2e;
            --text-secondary: #64647a;
            --orange-primary: #d4531e;
            --purple-primary: #7c3aed;
            --green-primary: #10b981;
            --border-color: #e8e0d8;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
        }

        .policy-header {
            background: var(--bg-card);
            padding: 20px 40px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-bottom: 1px solid var(--border-color);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 24px;
            background: var(--bg-primary);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: var(--purple-primary);
            color: white;
            transform: translateX(-5px);
        }

        .policy-hero {
            background: linear-gradient(135deg, var(--purple-primary), #8b5cf6);
            color: white;
            padding: 60px 40px;
            text-align: center;
        }

        .policy-hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; }
        .policy-hero p { font-size: 18px; opacity: 0.95; max-width: 600px; margin: 0 auto; }

        .last-update {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            font-size: 14px;
        }

        .policy-content {
            max-width: 900px;
            margin: -40px auto 60px;
            padding: 0 20px;
        }

        .policy-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
        }
        .section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

        .section h2 {
            color: var(--purple-primary);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section h2 i { font-size: 20px; }

        .section h3 {
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            margin: 25px 0 15px;
        }

        .section p { color: var(--text-secondary); margin-bottom: 15px; }

        .section ul, .section ol {
            color: var(--text-secondary);
            margin: 15px 0;
            padding-left: 25px;
        }
        .section li { margin-bottom: 10px; }

        .highlight-box {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
            border-left: 4px solid var(--purple-primary);
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box p { margin: 0; color: var(--text-primary); }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
        }
        .data-table th, .data-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .data-table th {
            background: var(--bg-primary);
            color: var(--text-primary);
            font-weight: 600;
        }
        .data-table td { color: var(--text-secondary); }

        .policy-footer {
            background: var(--text-primary);
            color: white;
            padding: 30px 40px;
            text-align: center;
        }
        .policy-footer p { opacity: 0.7; font-size: 14px; }

        @media (max-width: 768px) {
            .policy-header { padding: 15px 20px; }
            .policy-hero { padding: 40px 20px; }
            .policy-hero h1 { font-size: 28px; }
            .policy-card { padding: 30px 20px; }
            .section h2 { font-size: 20px; }
            .data-table { font-size: 12px; }
            .data-table th, .data-table td { padding: 10px 8px; }
        }
        .skip-nav { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: #7c3aed; color: #fff; padding: 8px 16px; z-index: 10000; text-decoration: none; border-radius: 0 0 6px 6px; font-weight: 600; }
        .skip-nav:focus { top: 0; }
        *:focus-visible { outline: 2px solid #7c3aed; outline-offset: 2px; }

/* CSP Faz 2: style="" ozniteliklerinden cevrilen kurallar */
.link-purple { color:var(--purple-primary); text-decoration:underline; }
