body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}
.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    color: #9848ff;
    text-align: center;
    margin-bottom: 40px;
}
h2 {
    color: #9848ff;
    margin-top: 30px;
}
.section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 