/* legal.css - Yasal Sayfalar için Stil Dosyası */

/* Kök değişkenler: Ana siteyle aynı renkleri kullanıyoruz */
:root {
    --primary-color: #c9378a;
    --secondary-color: #4c3a51;
    --background-color: #f4f6f8;
    --text-color: #333;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    background-color: var(--background-color); /* Arka planı ana siteyle aynı yap */
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px 40px; /* İç boşluğu biraz artıralım */
    background-color: #fff; /* Konteynere beyaz arka plan verelim */
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Çok hafif bir gölge */
}

.legal-header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.legal-header a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

h1 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}