.services{
    padding: 60px 0;
    background: linear-gradient(to bottom right, #f3ecff, #e9e5f7);
}

.ourServicesPanelDiv {
    min-height: 450px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../../images/our-services.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;
}

.ourServicesPanelDiv > h1 {
    font-size: 3.5rem;
    letter-spacing: 0.01rem;
    color:white
}

.ourServicesPanelDiv > 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: 200px;
    border: none;
    border-radius: 10px;
    background: var(--btncolor);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

@media screen and (max-width: 980px) {
    .ourServicesPanelDiv {
        min-height: 400px;
        padding: 20px;
    }

    .ourServicesPanelDiv > h1 {
        font-size: 2rem;
    }

    .ourServicesPanelDiv > p {
        max-width: 90%;
        font-size: 1rem;
    }

    .getPricingPanel {
        flex-direction: column;
        gap: 15px;
    }

    .getPricingPanel > a > button {
        width: 100%;
        font-size: 1.1rem;
    }
}
