/**
 * Yasal Sayfalar CSS
 * Koçoğlu Ağız ve Diş Sağlığı Polikliniği
 */

/* Sayfa Başlığı Bölümü */
.page-header {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.breadcrumb-item a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #7b8a8b;
}

/* İçerik Bölümü */
.legal-content-section {
    background-color: #f8f9fa;
}

.legal-content {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.legal-meta {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section h3 {
    color: #34495e;
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-section address {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .legal-content {
        font-size: 15px;
    }
    
    .legal-intro {
        font-size: 16px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 25px 0;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .legal-content {
        font-size: 14px;
    }
    
    .legal-intro {
        font-size: 15px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 17px;
    }
} 