/* kvkk.css */

/* Değişkenler - Renkleri buradan tek tıkla değiştirebilirsin */
:root {
    --primary-color: #4f46e5;    /* Modern İndigo */
    --text-dark: #1f2937;       /* Koyu Gri/Siyah */
    --text-light: #6b7280;      /* Açıklama Metni Grisi */
    --bg-gradient: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    --card-bg: #ffffff;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    width: 95%;
    max-width: 900px; /* Okunabilirlik için genişliği biraz daralttık */
    margin: 40px auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Yumuşak gölge */
    animation: fadeIn 0.8s ease-out;
    font-family: 'Inter', -apple-system, sans-serif;
    margin-top: 100px;
}

.title-box{
    text-align: center;
    margin-bottom: 30px;
}
.main-title{
    font-weight: 600;
}


.box {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Bölümler arası boşluk */
}

.each-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0; /* Bölümleri ayıran ince çizgi */
    transition: transform 0.2s ease;
}

/* Hover efekti - Mouse ile üzerine gelince hafif belirginleşir */
.each-content:hover {
    transform: translateX(5px);
}

.each-content:last-child {
    border-bottom: none;
}

.title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
    letter-spacing: -0.025em;
}

.context {
    font-size: 1rem;
    line-height: 1.5; /* Satır arası boşluk okunabilirliği artırır */
    color: var(--text-dark);
    white-space: pre-line; /* HTML'deki alt satırları korur */
    font-weight: 400;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .title {
        font-size: 1.1rem;
    }
    
    .context {
        font-size: 0.95rem;
    }
}