/* ---------------------------------------------------
   BASE
--------------------------------------------------- */
#legal {
    padding: 120px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

#legal h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.subtitle {
    opacity: 0.8;
    margin-bottom: 40px;
}

/* ---------------------------------------------------
   LEGAL CARDS
--------------------------------------------------- */
.legal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    margin-bottom: 30px;
    text-align: left;
    animation: fadeIn 0.4s ease;
}

.legal-card h2 {
    margin-bottom: 12px;
}

.legal-card p {
    opacity: 0.85;
    line-height: 1.6;
}

/* ---------------------------------------------------
   ANIMATIONS
--------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
