.reasons{
padding:80px 20px;
background:#f5f7f6;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:60px;
font-weight:600;
}

.reasons-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.reason-card{
position:relative;
background:white;
width:300px;
padding:40px 30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.reason-card:hover{
transform:translateY(-10px);
}

.icon{
width:55px;
height:55px;
background:#3b3b73;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-size:22px;
margin-bottom:20px;
}

.reason-card h3{
margin-bottom:10px;
font-size:20px;
}

.reason-card p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.reason-card a{
text-decoration:none;
color:#111;
font-weight:500;
}

.reason-card a i{
margin-left:6px;
}

/* corner borders */

.reason-card::before,
.reason-card::after{
content:"";
position:absolute;
width:40px;
height:40px;
border:3px solid #0f4c45;
}

.reason-card::before{
top:-8px;
left:-8px;
border-right:none;
border-bottom:none;
}

.reason-card::after{
bottom:-8px;
right:-8px;
border-left:none;
border-top:none;
}