/* =========================
   HUKUKİ SAYFALAR (GİZLİLİK)
========================= */

.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;
    letter-spacing: -1px;
}

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

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

/* Bölüm Grupları */
.policy-group { 
    margin-bottom: 40px; 
    padding: 35px; 
    border-radius: 20px; 
    border: 1px solid #e2e8f0; 
    background: #fff; 
    position: relative;
    transition: 0.3s ease;
}

.policy-group:hover {
    border-color: #F57C22;
    box-shadow: 0 10px 25px rgba(245, 124, 34, 0.06);
}

.policy-group.highlight { 
    background: #fff8f3; 
    border: 1px solid #F57C22; 
}

/* Başlıklar ve İkonlar */
.policy-icon {
    width: 45px;
    height: 45px;
    background: rgba(245, 124, 34, 0.1);
    color: #F57C22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.policy-group h2 { 
    color: #0F2A6B; 
    font-size: 22px; 
    font-weight: 800;
    margin-bottom: 20px; 
    text-transform: none;
}

.sub-section h3 {
    font-size: 18px;
    color: #0F2A6B;
    margin: 25px 0 10px;
    font-weight: 700;
}

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

/* Güvenlik Rozeti */
.security-badge { 
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    background: #10b981; 
    color: white; 
    padding: 6px 16px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 700; 
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* 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;
}














/* ================================================================
   GİZLİLİK POLİTİKASI MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    
    /* 1. Hero Alanını telefon ekranına sığdır */
    .legal-hero {
        padding: 100px 15px 80px !important;
    }

    .legal-hero h1 {
        font-size: 26px !important;
        letter-spacing: 0 !important;
    }

    /* 2. Ana Kartın kenar boşluklarını ayarla */
    .legal-card {
        margin: -40px 10px 0 !important;
        padding: 25px 15px !important;
        border-radius: 20px !important;
    }

    /* 3. Bölüm Grupları (Policy Group) Düzenlemesi */
    .policy-group {
        padding: 20px !important; /* 35px mobilde çok dardı, 20px'e çektik */
        margin-bottom: 25px !important;
        border-radius: 15px !important;
    }

    /* 4. Başlık ve İkon Boyutları */
    .policy-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .policy-group h2 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .sub-section h3 {
        font-size: 16px !important;
    }

    /* 5. Metin Boyutları */
    .policy-group p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* 6. Güvenlik Rozeti */
    .security-badge {
        padding: 4px 12px !important;
        font-size: 10px !important;
    }
}