/* 
=========================
GİZLİLİK POLİTİKASI (POLICY) ALANI 
=========================
*/
.policy-section {
    padding: 1.5rem 0 6rem 0; /* Diğer alt sayfa geçiş hizaları ile uyarlandı */
    background-color: #ffffff;
}

.policy-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.2rem;
    display: inline-block;
}

/* Şık Marka Çizgi Vurgusu (Tüm Başlıklarla Aynı) */
.policy-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #e2e8f0; 
    border-radius: 2px;
}

.policy-container {
    width: 100%;
    margin: 0 auto;
    color: #475569;
    line-height: 1.85; /* Uzun İngilizce metinleri yorucu yapmamak için rahat satır boşluğu */
    font-size: 1.1rem;
}

.policy-container h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
}

.policy-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-container h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #3b82f6; /* Marka mavisiyle önemli yasal alanlar vurgulandı */
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.policy-container p {
    margin-bottom: 1.5rem;
}

/* Madde imlemeleri (Ufak mavi noktalar) */
.policy-container ul {
    list-style-type: none; /* Standart çirkin diskler iptal */
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.policy-container ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem; /* Madde iminden uzaklaştırdık */
}

.policy-container ul li::before {
    content: '•';
    color: #3b82f6; /* Madde noktaları kurumsal mavi */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

