.sec4{
    margin-top:80px;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-height:90vh;
    gap:60px;
    padding: 80px 5% 50px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.sec-4-1{
    display:flex;
    flex-direction:column;
    align-items:center;

}

.sec-4-1>:nth-child(1){
    font-weight:600;
}

.sec-4-2{
    display:flex;
    gap:40px;
    flex-wrap: wrap;
    justify-content: center;
}

.box3{
    width:340px;
    border:2px solid #e0e0e0;
    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 25px;
    gap:20px;
    transition: all 0.3s ease;
    background: white;
}

.box3:hover{
    border-color: darkorange;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,140,0,0.2);
}

.box3 img{
    width:100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow:rgba(0,0,0,0.15) 0px 5px 15px;
    transition: transform 0.3s ease;
}

.box3:hover img{
    transform: scale(1.05);
}

.box3-2{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:15px;
}

.box3-2>:nth-child(1){
    font-size:20px;
    font-weight: 600;
    text-align: center;
}
.box3-2>:nth-child(2){
    font-size:20px;
    font-weight: 600;
    text-align: center;
}

.box3-2 .btns{
    width: 100%;
}

.box3-2 .btns button{
    flex: 1;
    min-width: 100px;
}

@media(max-width:1024px){
    .sec4{
        min-height:100%;
        padding: 60px 5% 50px;
    }
    .sec-4-2{
        flex-direction: column;
        align-items: center;
    }
    .box3{
        width:90%;
        max-width:500px;
        gap:20px;
    }
    .box3 img{
        height: 280px;
    }

    .box3-2>:nth-child(1){
       font-size:24px;
    }
}

@media(max-width:767px){
    .sec4{
        padding: 60px 5% 40px;
        margin-top: 40px;
    }
    .box3{
        width:95%;
        max-width:340px;
        gap:18px;
        padding: 20px;
    }
    .box3 img{
        height: 200px;
    }

    .box3-2>:nth-child(1){
       font-size:18px;
    }

    .box3-2 .btns{
        flex-direction: row;
        gap: 10px;
    }
}