/* Legal pages specific styles */

.logo-link {
    text-decoration: none;
}

.legal-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.legal-content h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.legal-content .last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #667eea;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content h4 {
    font-size: 1rem;
    color: #555;
    margin-top: 15px;
    margin-bottom: 8px;
}

.legal-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    line-height: 1.8;
}

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

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 15px 0;
}

.warning-box ul {
    margin-bottom: 0;
}

.back-link {
    text-align: center;
    margin-bottom: 30px;
}

.back-link a {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.2s;
}

.back-link a:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .legal-content {
        padding: 25px 20px;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.15rem;
    }
}
