.our-story{
    padding:70px 20px;
}

.story-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.story-image{
    flex:1;
    min-height:450px;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.story-content{
    flex:1;
    padding:60px;
}

.story-tag{
    display:inline-block;
    color:#b55245;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.story-content h2{
    font-size:42px;
    color:#4d342d;
    line-height:1.2;
    margin-bottom:25px;
}

.story-content p{
    color:#6d645f;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.story-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 28px;
    background:#b55245;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.story-btn:hover{
    background:#8c3d33;
    transform:translateY(-2px);
}

@media(max-width:900px){

.story-container{
    flex-direction:column;
}

.story-image{
    width:100%;
    min-height:280px;
}

.story-content{
    padding:35px 25px;
}

.story-content h2{
    font-size:30px;
}

}