.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-hero {
    text-align: center;
    padding: 160px 0 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.legal-hero h1 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    margin: 16px 0 12px;
    letter-spacing: -1px;
}

.legal-hero p {
    font-size: 1em;
    color: #888;
}

.legal-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    padding-bottom: 60px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.4em;
    font-weight: 600;
    color: #8EA58C;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 1em;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #a0a0a0;
    line-height: 1.6;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #8EA58C;
    border-radius: 50%;
}

.legal-section a {
    color: #8EA58C;
    text-decoration: none;
    transition: color 0.25s ease;
}

.legal-section a:hover {
    color: #b4c9b1;
    text-decoration: underline;
}

footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 120px 0 40px;
    }
    .legal-hero h1 {
        font-size: 2.2em;
    }
    .legal-page {
        padding: 0 16px;
    }
}
