/* Legal Pages Styles */

.legal-document {
    padding: 30px 0;
    color: #333;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
}

.legal-document h2 {
    color: #e30a17;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
}

.legal-document h3 {
    color: #444;
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.legal-document ul, 
.legal-document ol {
    margin-bottom: 20px;
    margin-left: 25px;
    color: #555;
}

.legal-document li {
    margin-bottom: 10px;
    font-size: 16px;
}

.page-header {
    background-color: #f8f9fa;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/cityvenn/img/slide.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    padding: 40px 0 70px;
    background-color: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Breadcrumb Styles */
.breadcrumb-container {
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.breadcrumb {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    font-size: 12px !important;
    list-style: none;
}
.breadcrumb-item a {
    color: #ffb900 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 8px;
    border-radius: 4px;
    background: none !important;
}
.breadcrumb-item a:hover {
    color: #e6a600 !important;
    background: none !important;
}
.breadcrumb-item.active {
    color: #333 !important;
    font-weight: 500;
    background: none !important;
    padding: 2px 8px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: #ffb900 !important;
    margin: 0 6px;
    font-weight: 700;
    font-size: 12px;
}

/* Title Underline like in Kurumsal Page */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.title-underline {
    height: 3px;
    width: 60px;
    background-color: #e30a17;
    margin: 15px auto 0;
}

@media (max-width: 768px) {
    .legal-document h2 {
        font-size: 24px;
    }
    
    .legal-document h3 {
        font-size: 20px;
    }
    
    .legal-document p,
    .legal-document li {
        font-size: 15px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
}
