/* Yasal sayfalar için ek CSS stilleri */

.legal-content {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.legal-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 1.2rem;
}

.legal-section ul, .legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li, .legal-section ol li {
    margin-bottom: 0.8rem;
    position: relative;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
    text-align: right;
}

.legal-highlight {
    background-color: rgba(105, 180, 172, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    margin: 20px 0;
}

.legal-emphasis {
    font-weight: bold;
    color: var(--primary-color);
}

.legal-section .small-text {
    font-size: 1.3rem;
    color: var(--text-light);
}

/* Responsive styles */
@media (max-width: 768px) {
    .legal-content {
        font-size: 1.4rem;
    }
    
    .legal-section h2 {
        font-size: 2rem;
    }
    
    .legal-section h3 {
        font-size: 1.7rem;
    }
    
    .legal-section h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        font-size: 1.3rem;
    }
    
    .legal-section {
        margin-bottom: 3rem;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
    }
    
    .legal-section h3 {
        font-size: 1.6rem;
    }
    
    .legal-section h4 {
        font-size: 1.4rem;
    }
    
    .legal-section ul, .legal-section ol {
        margin-left: 1.5rem;
    }
}