/* ==========================
   DOWNLOAD SECTION
========================== */

.download-section{
    padding:70px 20px;
    background:#f5f7fb;
    min-height:80vh;
}

.download-section .container{
    max-width:1200px;
    margin:auto;
}

.download-section h2{
    text-align:center;
    font-size:38px;
    color:#222;
    margin-bottom:12px;
    font-weight:700;
}

.download-section p{
    text-align:center;
    color:#666;
    font-size:16px;
    margin-bottom:50px;
    line-height:1.7;
}

/* ==========================
   GRID
========================== */

.download-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ==========================
   CARD
========================== */

.download-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.download-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.download-card .icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#ffe9e9;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.download-card .icon i{
    font-size:45px;
    color:#e53935;
}

.download-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.download-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* ==========================
   BUTTON
========================== */

.download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    background:#28a745;
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#1d7b33;
    transform:scale(1.05);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .download-section{
        padding:60px 15px;
    }

    .download-grid{
        grid-template-columns:1fr;
    }

    .download-card{
        padding:35px 25px;
    }

    .download-section h2{
        font-size:32px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .download-section{
        padding:50px 15px;
    }

    .download-section h2{
        font-size:28px;
    }

    .download-section p{
        font-size:15px;
        margin-bottom:35px;
    }

    .download-card{
        padding:30px 20px;
        border-radius:15px;
    }

    .download-card .icon{
        width:75px;
        height:75px;
    }

    .download-card .icon i{
        font-size:38px;
    }

    .download-card h3{
        font-size:21px;
    }

    .download-card p{
        font-size:14px;
    }

    .download-btn{
        width:100%;
        padding:14px;
        font-size:15px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .download-section{
        padding:40px 12px;
    }

    .download-section h2{
        font-size:24px;
    }

    .download-section p{
        font-size:14px;
    }

    .download-card{
        padding:25px 18px;
    }

    .download-card .icon{
        width:65px;
        height:65px;
    }

    .download-card .icon i{
        font-size:32px;
    }

    .download-card h3{
        font-size:18px;
    }

    .download-btn{
        font-size:14px;
        padding:12px;
    }

}