.contact-section{
    padding:80px 0;
    background:#f8f9fa;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
    align-items:start;
}

.contact-info{
    display:grid;
    gap:25px;
}

.contact-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-6px);
}

.contact-card h3{
    color:#0b5d3b;
    font-size:20px;
    margin-bottom:10px;
}

.contact-card p{
    color:#555;
    line-height:1.8;
    margin:0;
}

.contact-card a{
    color:#d89c10;
    text-decoration:none;
    font-weight:600;
}

.contact-card a:hover{
    color:#0b5d3b;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:550px;
    border:none;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-map iframe{
        min-height:400px;
    }

}

@media(max-width:576px){

    .contact-section{
        padding:60px 20px;
    }

    .contact-card{
        padding:20px;
    }

    .contact-card h3{
        font-size:18px;
    }

}