.banner {
    width: 90%;
    /* height: 70vh; */
    overflow: hidden;
    margin: 40px auto;
    border-radius: 20px;
    padding: 80px 20px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.text {
    flex: 1;
}

.text h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #19274f;
}

.text p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-call {
    background: #19274f;
    color: white;
}

.btn-call:hover {
    background: #142450;
    color: white;
}


.btn-call {
    background: #111b37;
    color: white;
}


.btn-chat {
    background: #25869d;
    color: white;
}

.btn-chat:hover {
    background: #25869d;
    color: white;
}


.btn-quote {
    background: #e2b654;
    color: #ffffff;
}

.btn-quote:hover {
    color: #ffffff;
    background: #d4a236;
}


.btn:hover{
    transform: translateY(-2px);
}



.image {
    flex: 1;
    align-items: center;
}

.image img {
    width: 100%;
    max-width: 550px;
    display: block;
    margin-left: auto;
    border-radius: 12px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .banner {
        padding: 50px 20px;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .text h1 {
        font-size: 36px;
    }

    .text p {
        margin-left: auto;
        margin-right: auto;
    }

    .buttons {
        justify-content: center;
    }

    .image img {
        margin: 0 auto;
    }

}