/* Politika Sayfaları için Stil Dosyası */
:root {
    --primary-color: #0073aa;
    --primary-dark: #005b87;
    --primary-light: #00a0d2;
    --text-main: #333;
    --text-secondary: #666;
    --bg-main: #ffffff;
    --bg-alt: #f5f9fc;
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --border-radius: 12px;
    --shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

/* Header için güvenli alan */
.policy-page-wrapper {
    padding-top: 80px;
    margin-bottom: 50px;
}

.policy-container {
    max-width: 800px;
    width: 90%;
    margin: 30px auto 50px;
    padding: var(--spacing-xl);
    background: var(--bg-main);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient);
}

.policy-container h1 {
    color: var(--text-main);
    text-align: center;
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.policy-intro {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: var(--spacing-sm);
}

.policy-section {
    margin-bottom: var(--spacing-lg);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: var(--spacing-sm);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 115, 170, 0.2);
}

.policy-section h3 {
    color: var(--text-main);
    font-size: 18px;
    margin: var(--spacing-md) 0 var(--spacing-xs);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: var(--spacing-md);
}

.policy-section ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Vurgu için */
.policy-section strong {
    font-weight: 600;
    color: var(--text-main);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .policy-container {
        padding: var(--spacing-md);
        width: 95%;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section h3 {
        font-size: 16px;
    }
}