.sec2{
    min-height:80vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding: 80px 5% 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.sec-2-1{
    display:flex;
    flex-direction: column;
    align-items:center;
}
.sec-2-1>:nth-child(1){
    font-weight:600;
}

.sec-2-2{
    margin-top:80px;
    display:flex;
    align-items:center;
    justify-content: center;
    padding-bottom: 80px;
    gap:60px;
}

.sec-2-2-1 img{
    width:350px;
    height:350px;
    border-radius:50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sec-2-2-2-1{
    display:flex;
    gap:50px;
}

.sec-2-2-2{
    display:flex;
    flex-direction: column;
    gap:30px;
}

.box{
    display:flex;
    flex-direction:column;
    align-items:center;
    border:2px solid #e0e0e0;
    width:280px;
    padding:30px 20px;
    border-radius:20px;
    gap:8px;
    transition: all 0.3s ease;
    background: white;
}

.box:hover{
    border-color: darkorange;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,140,0,0.2);
}

.box i{
    font-size:35px;
    color: darkorange;
}

.box >:nth-child(2){
    font-weight:600;
    font-size:20px;
    margin-top: 5px;
}

.box >:nth-child(3),box>:nth-child(4){
    font-size:16px;
    color: #666;
    text-align: center;
}

.p1{
    width:80%;
}

@media(max-width:1024px){
    .sec2{
        min-height:100%;
        padding: 60px 5% 50px;
    }
    .sec-2-2{
        margin-top:50px;
        flex-direction: column;
        padding-bottom: 50px;
    }
    .sec-2-2-2{
        align-items:center;
    }
    .sec-2-2-2-1{
        gap: 30px;
    }
}

@media(max-width:767px){
    .sec2{
        min-height:100%;
        padding: 60px 5% 40px;
    }
    .sec-2-2{
        margin-top:40px;
        flex-direction: column;
        gap: 40px;
    }
    .sec-2-2-1 img{
        width:280px;
        height:280px;
    }
    .sec-2-2-2{
        align-items:center;
        width: 100%;
    }
    .sec-2-2-2-1{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .box{
        width: 90%;
        max-width: 320px;
    }
    .p1{
        width: 95%;
        text-align: center;
    }
}