/* legal-cerez.css — CSP Faz 2: cerez-politikasi.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(--green-primary);
            color: white;
            transform: translateX(-5px);
        }

        .policy-hero {
            background: linear-gradient(135deg, var(--green-primary), #34d399);
            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(--green-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(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
            border-left: 4px solid var(--green-primary);
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--text-primary);
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
        }

        .cookie-table th, .cookie-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .cookie-table th {
            background: var(--bg-primary);
            color: var(--text-primary);
            font-weight: 600;
        }

        .cookie-table td {
            color: var(--text-secondary);
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .cookie-type.required {
            background: #fef3c7;
            color: #d97706;
        }

        .cookie-type.functional {
            background: #dbeafe;
            color: #2563eb;
        }

        .cookie-type.analytics {
            background: #e0e7ff;
            color: #4f46e5;
        }

        .cookie-type.marketing {
            background: #fce7f3;
            color: #db2777;
        }

        .browser-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .browser-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: var(--bg-primary);
            border-radius: 10px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .browser-item:hover {
            background: var(--green-primary);
            color: white;
        }

        .browser-item i {
            font-size: 24px;
        }

        .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;
            }

            .cookie-table {
                font-size: 12px;
            }

            .cookie-table th, .cookie-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; }
