/* Legal Pages (Terms of Service, Privacy Policy) Styles */

.legal-main {
    min-height: 100vh;
    background: var(--soft-black);
    padding: 120px 2rem 4rem;
    color: var(--warm-white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--deep-plum);
    border: 1px solid var(--antique-gold);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--antique-gold);
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 1rem;
    opacity: 0.7;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--antique-gold);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-content a {
    color: var(--antique-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .legal-main {
        padding: 100px 1rem 2rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-title {
        font-size: 2.5rem;
    }
}
