@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* Section */
.legal-section{
    padding:50px 20px;
    max-width:1400px;
    margin:auto;
}

.legal-title{
    text-align:center;
    font-size:30px;
    font-weight:900;
    margin-bottom:35px;
    color:#1e293b;
    font-family: 'League Spartan', sans-serif;
}


/* Grid Layout */
.legal-grid{
    display:grid;
    gap:20px;
}

/* Desktop & Laptop - 5 Cards */
@media(min-width:1200px){
    .legal-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media(min-width:768px) and (max-width:1199px){
    .legal-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:767px){
    .legal-grid{
        grid-template-columns: 1fr;
    }
}

/* Card */
.legal-card{
    background:#ffffff;
    border-radius:14px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.legal-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 36px rgba(0,0,0,0.12);
}

.legal-card img{
    width:180px;
    border-radius:5px;
    margin:0 auto 16px;
}

.legal-card h3{
    font-size:18px;
    margin-bottom:6px;
    color:#0f172a;
}

.legal-card p{
    font-size:14px;
    color:#64748b;
    margin-bottom:20px;
}

/* Button */
.legal-card a{
    display:inline-block;
    padding:10px 22px;
    background:#3F3A32;
    color:#fff;
    font-size:14px;
    border-radius:7px;
    text-decoration:none;
    transition:background .3s ease;
}

.legal-card a:hover{
    background:#1e40af;
}

/* Small Mobile Text */
@media(max-width:480px){
    .legal-title{
        font-size:22px;
        margin-top:30px;
    }
}