/* KVKK Aydınlatma sayfası stilleri - Kullanım koşulları sayfası referans alınarak */

:root {
    --primary-red: #dc2626;
    --primary-red-light: #ef4444;
    --primary-red-dark: #b91c1c;
    --dark-black: #000000;
    --dark-primary: #0a0a0a;
    --dark-secondary: #111111;
    --dark-card: #1a1a1a;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #d1d5db;
    --text-muted: #9ca3af;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-red: rgba(220, 38, 38, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 8px 32px rgba(220, 38, 38, 0.3);
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #b91c1c 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #111111 70%, #1a1a1a 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.kvkk-main {
    background: var(--gradient-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Section */
.kvkk-content-simple {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.kvkk-content-main {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Basitleştirilmiş İçerik Yapısı */
.kvkk-text-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.kvkk-text-content:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.content-text {
    color: var(--text-light);
    line-height: 1.7;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 30px 0 15px 0;
    line-height: 1.3;
    border-bottom: 2px solid var(--border-red);
    padding-bottom: 8px;
}

.content-text p {
    margin-bottom: 16px;
    text-align: justify;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.content-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.content-text a:hover {
    text-decoration: underline;
}

.contact-info {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--border-red);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Content Section (Veritabanından gelen içerik için) */
.content-section {
    margin-bottom: 30px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    line-height: 1.3;
    border-bottom: 2px solid var(--border-red);
    padding-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .kvkk-content-simple {
        padding: 60px 0;
    }
    
    .kvkk-text-content {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .content-text h2 {
        font-size: 1.75rem;
    }
    
    .content-text h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .kvkk-text-content {
        padding: 20px;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text h3 {
        font-size: 1.125rem;
    }
} 