.legal-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.legal-text li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

    .legal-text {
        padding: 1.5rem;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }
} 