.section-buy{
    padding:100px 8%;
}

/* MAIN LAYOUT */
.buy-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

/* LEFT SIDE (TEXT + HEADING TOGETHER) */
.buy-text{
    flex:1;
}

/* H2 ON LEFT WITH TEXT */
.section-buy h2{
    font-size:2.3rem;
    color:#8d5002;
    margin-bottom:20px;
    grid-area: 2px;
    text-align:left;
    border-left: solid 3.4px rgb(19, 2, 69);
    padding-left: 10px;
    border-radius: 3px;
}

/* PARAGRAPH */
.buy-text p{
    line-height:1.8;
    color:#444;
    text-align:left;
}

/* RIGHT IMAGE */
.buy-image{
    flex:1;
}

.buy-image img{
    width:40vw;
    height:60vh;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media(max-width:768px){
    .content-row{
        flex-direction:column;
    }

    .buy-text,
    .buy-image{
        width:100%;
    }
}