:root {
    --bg-dark: #053B3F;
    --bg-medium: rgba(0, 64, 64, 0.5);
    --text-light: #ffffff;
    --text-green-medium: #22c55e;
    --text-green-light: #4ade80;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-legal {
    padding: 9.6rem 0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.h1-legacy {
    font-size: 4.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-green-medium);
    opacity: 0;
    transform: translateY(2rem);
    animation: slideUp 0.5s ease 0.2s forwards;
}

.legal-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem;
    background: var(--bg-medium);
    border-radius: 1rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(2rem);
    animation: slideUp 0.5s ease 0.4s forwards;
}

.legal-block {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: slideUp 0.5s ease forwards;
}

.legal-block:nth-child(1) { animation-delay: 0.6s; }
.legal-block:nth-child(2) { animation-delay: 0.8s; }
.legal-block:nth-child(3) { animation-delay: 1.0s; }
.legal-block:nth-child(4) { animation-delay: 1.2s; }
.legal-block:nth-child(5) { animation-delay: 1.4s; }
.legal-block:nth-child(6) { animation-delay: 1.6s; }

.legal-block:last-child {
    margin-bottom: 0;
}

.h2-legacy {
    color: var(--text-green-medium);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--text-green-medium);
}

.legal-block p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--text-green-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--text-light);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

