/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 60px;
    min-height: calc(100vh - 400px); /* Account for header and footer */
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

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

    .legal-section {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 80px 0 30px;
    }

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

    .legal-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.1rem;
    }
}