/* DineWho - Kullanım Koşulları Sayfası Stilleri */

/* Hero Section */
.legal-hero {
    background: var(--gradient-primary);
    padding: 180px 0 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    gap: 10px;
}

.legal-breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.legal-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.legal-breadcrumb i {
    font-size: 12px;
    opacity: 0.6;
}

.legal-breadcrumb span {
    opacity: 0.9;
}

/* Content Layout */
.legal-content {
    padding: 0 0 80px;
}

.legal-container {
    display: flex;
    gap: 40px;
}

.legal-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.legal-text {
    flex: 1;
}

/* Sidebar Styles */
.legal-toc, .legal-related {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-toc h3, .legal-related h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 12px;
}

.legal-toc h3:after, .legal-related h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.legal-toc ul, .legal-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li, .legal-related li {
    margin-bottom: 8px;
}

.legal-toc a, .legal-related a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.legal-toc a:hover, .legal-related a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.legal-toc a:before, .legal-related a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.legal-toc a:hover:before, .legal-related a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

/* Main Content Styles */
.legal-section {
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.legal-section h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.legal-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section ul {
    margin: 0 0 20px 20px;
    padding: 0;
}

.legal-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.legal-section ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .legal-container {
        flex-direction: column;
    }
    
    .legal-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .legal-toc, .legal-related {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 160px 0 40px;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-toc ul, .legal-related ul {
        columns: 2;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 150px 0 30px;
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-toc ul, .legal-related ul {
        columns: 1;
    }
} 