
.pricingbannerSection{
    background: linear-gradient(to right, #dbeafe, #e0f2fe, #f0f9ff);

    padding:60px 0px;
}
.pricingbannerPanelDiv {
    min-height: 450px;
    background-image: url(../../images/pricingbanner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    text-align: center;
}

.pricingbannerPanelDiv > h1 {
    font-size: var(--bannerfontsize);
    letter-spacing: 0.01rem;
    color:white
}

.pricingbannerPanelDiv > p {
    max-width: 570px;
    letter-spacing: 0.01rem;
    line-height: 1.4rem;
    color: white;
}



.getPricingPanel {
    display: flex;
    gap: 25px;
    padding: 15px;
    border-radius: 5px;
}

.getPricingPanel > a > button {
    height: 50px;
    min-width: 230px;
    border: none;
    border-radius: 10px;
    background: var(--btncolor);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

@media screen and (max-width: 980px) {
    .pricingbannerPanelDiv {
        min-height: 400px;
        padding: 20px;
    }

    .pricingbannerPanelDiv > h1 {
        font-size: 2rem;
    }

    .pricingbannerPanelDiv > p {
        max-width: 90%;
        font-size: 1rem;
    }

    .getPricingPanel {
        flex-direction: column;
        gap: 15px;
    }

    .getPricingPanel > a > button {
        width: 100%;
        font-size: 1.1rem;
    }
}

