/* =========================
   ÇEREZ POLİTİKASI SAYFASI
========================= */

.legal-wrapper { 
    background-color: #E8F6FF; 
    padding-bottom: 100px; 
    font-family: 'Inter', sans-serif;
}

/* Hero Alanı */
.legal-hero { 
    background: linear-gradient(135deg, #0F2A6B 0%, #1E88E5 100%); 
    color: white; 
    padding: 140px 0 100px; 
    text-align: center; 
}

.legal-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

/* İçerik Kartı */
.legal-card { 
    background: #ffffff; 
    max-width: 950px; 
    margin: -60px auto 0; 
    padding: 60px; 
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(15, 42, 107, 0.08); 
    line-height: 1.8;
    position: relative;
}

/* Bölüm Başlıkları ve İkonlar */
.policy-group { 
    margin-bottom: 50px; 
    position: relative;
}

.policy-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 124, 34, 0.1);
    color: #F57C22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.policy-group h2 { 
    color: #0F2A6B; 
    font-size: 24px; 
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.policy-group p {
    color: #475569;
    font-size: 16px;
}

/* Tablo Tasarımı */
.table-responsive {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
}

.cookie-table th, 
.cookie-table td { 
    padding: 18px 20px; 
    text-align: left; 
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th { 
    background: #f8fafc; 
    color: #0F2A6B; 
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table td {
    font-size: 15px;
    color: #475569;
}

.fw-bold { font-weight: 700; color: #0F2A6B; }

/* Tarayıcı Linkleri */
.browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.browser-links span {
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Alt Bilgi */
.policy-footer {
    text-align: center; 
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    color: #64748b; 
}

.last-update {
    font-size: 13px;
    margin-top: 10px;
    font-weight: 600;
    color: #F57C22;
}
















/* ================================================================
   ÇEREZ POLİTİKASI MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    
    /* 1. Hero Alanını Küçült (Menü altına girmesin) */
    .legal-hero {
        padding: 100px 20px 80px !important;
    }

    .legal-hero h1 {
        font-size: 26px !important; /* 42px mobilde çok büyük */
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    /* 2. İçerik Kartını Mobilde Yay */
    .legal-card {
        margin: -40px 10px 0 !important; /* Kenarlardan biraz boşluk bırak */
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    /* 3. Bölüm Başlıklarını Küçült */
    .policy-group {
        margin-bottom: 35px !important;
    }

    .policy-group h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .policy-group p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* 4. TABLO DÜZENLEMESİ (En Kritik Yer) */
    .table-responsive {
        margin: 15px -5px !important; /* Kartın dışına taşmasın */
        -webkit-overflow-scrolling: touch; /* Mobilde yumuşak kaydırma */
    }

    .cookie-table th, 
    .cookie-table td {
        padding: 12px 10px !important;
        font-size: 12px !important; /* Yazıları küçülttük ki sığsın */
        white-space: nowrap; /* Tablonun bozulup aşağı kaymasını engeller, kullanıcı yana kaydırır */
    }

    /* 5. Tarayıcı Linklerini Düzelt */
    .browser-links {
        justify-content: center !important;
        gap: 8px !important;
    }

    .browser-links span {
        font-size: 12px !important;
        padding: 4px 10px !important;
    }
}