/* Styles for legal documents (Terms of Service and Privacy Policy) */

.logo {
    cursor: pointer;
}

.legal-document {
    padding: 60px 0;
    background-color: var(--color-white);
}

.legal-document .container {
    max-width: 900px;
}

.legal-document h1 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

.footer-bottom .legal-links {
    margin-top: 10px;
    text-align: center;
}

.footer-bottom .legal-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom .legal-links a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 40px 0;
    }

    .legal-content h2 {
        font-size: 20px;
    }
}