.fit-legal-frame{
    padding:80px 0;
}

.fit-legal-hero{
    text-align:center;
    padding:80px 0 40px;
}

.fit-legal-hero h1{
    font-size:56px;
    margin:12px 0;
}

.fit-legal-hero p{
    max-width:700px;
    margin:0 auto;
    color:var(--fit-muted);
}

.fit-legal-card{
    max-width:1000px;
    margin:0 auto;
    padding:50px;
}

.fit-legal-card h2{
    margin-bottom:30px;
}

.fit-legal-card h3{
    margin-top:35px;
    margin-bottom:10px;
    color:var(--fit-yellow);
}

.fit-legal-card p{
    line-height:1.8;
    color:var(--fit-muted);
}
.fit-legal-card ul{
    margin:16px 0 24px 22px;
}

.fit-legal-card li{
    margin-bottom:10px;
    color:var(--fit-muted);
}
.fit-legal-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
    margin-top:40px;
}

.fit-legal-link-card{
    display:block;

    padding:30px;

    border-radius:24px;

    background:var(--fit-card);

    border:1px solid rgba(255,255,255,.06);

    text-decoration:none;

    transition:.25s ease;
}

.fit-legal-link-card:hover{
    transform:translateY(-4px);

    border-color:rgba(255,210,46,.25);

    box-shadow:
        0 20px 40px rgba(0,0,0,.35);
}

.fit-legal-link-card span{
    display:block;

    font-size:36px;

    margin-bottom:14px;
}

.fit-legal-link-card h3{
    margin:0 0 10px;

    color:#fff;
}

.fit-legal-link-card p{
    margin:0;

    color:var(--fit-muted);
}
.fit-contact-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

    margin-top:40px;
}

.fit-contact-card{
    padding:30px;

    border-radius:24px;

    background:var(--fit-card);

    border:1px solid rgba(255,255,255,.06);
}

.fit-contact-card h3{
    margin-top:0;
}

.fit-contact-card a{
    color:var(--fit-yellow);

    font-weight:700;

    text-decoration:none;
}