.hero-services {
    display:grid;
    grid-template-columns: 500px 1fr;
    gap:2rem;
}

@media screen and (max-width:1150px){
    .hero-services {
        grid-template-columns: 1fr;
    }
    .hero-services-image {
    display: flex;
    justify-content: center;
    }
}

.hero-services-form {
    display: flex;
    flex-direction:column;
    gap: 1rem;
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 20px;
}

.hero-services-form p.text{
    font-size: 1rem;
    line-height: 1.2;
}
.hero-services-form p.price{
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-services-form form {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 1rem;
}

.hero-services-form .checkbox-container {
    max-width: unset;
    margin-top: 0;
}

.hero-services-form-benefits {
    display: flex;
    list-style-type:none;
    gap:1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.hero-services-image img {
    border-radius: 16px;
}

@media screen and (max-width:768px){
    .hero-services-form-benefits {
        flex-direction: column;
    }
    .hero-services-form-benefits li {
        align-items: center;
        justify-content: center;
        max-width: 320px;
    }
    
    .hero-services-form form {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction:column;
        align-items: center;
    }
    
    .hero-services-form form input.btn {
        margin: auto;
        width: 100%;
        max-width: none;
    }
    
    .hero-services-image {
        display: flex;
        max-width: 320px;
        margin: auto;
        width: 100%;
    }
    
    .hero-services-image img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        margin: auto;
    }
    
}

.hero-services-form-benefits li {
    display: flex;
    align-items: flex-start;
    gap:0.875rem;
    width: 100%;
}

@media screen and (min-width:900px){
    
    /* .hero-services-form p.price {
            margin-bottom: -0.875rem;
    } */
    
}