/* Politika Sayfaları CSS Stilleri */

/* Ana İçerik */
.main-content {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Başlık Stilleri */
.content-wrapper h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.content-wrapper h2 {
    color: #34495e;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #3498db;
}

.content-wrapper h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

/* Paragraf Stilleri */
.content-wrapper p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.content-wrapper .last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Liste Stilleri */
.content-wrapper ul, .content-wrapper ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-wrapper li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.content-wrapper ul li {
    list-style-type: disc;
}

.content-wrapper ol li {
    list-style-type: decimal;
}

/* Bölüm Stilleri */
.content-wrapper section {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* Link Stilleri */
.content-wrapper a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Ana Sayfaya Dön Butonu */
.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
}

.back-to-home .btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.back-to-home .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
}

/* Header Stilleri */
.header-area {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-area .logo {
    text-align: center;
}

.header-area .logo img {
    max-height: 60px;
    width: auto;
}

/* Footer Stilleri */
.footer-area {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5dade2;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 25px 20px;
        margin: 15px;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 15px;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .back-to-home .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Özel Vurgular */
.content-wrapper strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-wrapper em {
    color: #7f8c8d;
    font-style: italic;
}

/* Bölüm Geçişleri */
.content-wrapper section:not(:last-child) {
    margin-bottom: 30px;
}

/* Hover Efektleri */
.content-wrapper section:hover {
    background: #ecf0f1;
    transition: background-color 0.3s ease;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    animation: fadeInUp 0.6s ease-out;
}
