button{
    cursor: pointer;
}
.bannerSection{
    background: linear-gradient(to bottom right, #e6f2f7, #fafcfd);
    padding:  0px;
}

.bannerPanelDiv {
    min-height: 100vh;
    background-image: url(../../images/header-bng.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    text-align: center;

}

.bannerPanelDiv > h1 {
    font-size: var(--bannerfontsize);
    letter-spacing: 0.01rem;
}

.bannerPanelDiv > p {
    max-width: 570px;
    letter-spacing: 0.01rem;
    line-height: 1.4;
    color: gray;
}

.getPricingPanel {
    display: flex;
    gap: 25px;
    padding: 15px;
    border-radius: 5px;
}

.getPricingPanel > a > button {
    height: 50px;
    min-width: 200px;
    border: none;
    border-radius: 10px;
    background: var(--btncolor);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

@media screen and (max-width: 980px) {
    .bannerPanelDiv {
        min-height: 400px;
        padding: 20px;
    }

    .bannerPanelDiv > h1 {
        font-size: 2rem;
    }

    .bannerPanelDiv > p {
        max-width: 90%;
        font-size: 1rem;
    }

    .getPricingPanel {
        flex-direction: column;
        gap: 15px;
    }

    .getPricingPanel > a > button {
        width: 100%;
        font-size: 1.1rem;
    }
}
