:root {
    --primary-color: #461fef;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #ffffff;
    --max-width: 900px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 40px 20px;
}

.legal-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo img {
    height: 40px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--light-text);
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

.back-home {
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    body {
        padding: 20px;
    }
}