#services h1 {
    text-align: center;
}

#services .list-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/*
#services .service-header {
    border-radius: 10px;
    background-color: #F26522;
    padding: 10px 25px;
}

#services .service-header h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
*/

#services .price-list {
    width: 100%;
}

#services .equip-hire {
    margin-bottom: 30px;
}

#services .price-list th {
    background-color: #F26522;
    padding: 10px;
}

#services .price-list td {
    font-size: 18px;
    padding: 14px 10px 0;
    vertical-align: top;
    line-height: 1.2;
}

#services .price-list th:first-child {
    padding-left: 25px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

#services .price-list td:first-child {
    padding-left: 25px;
}

#services .price-list th:last-child {
    padding-right: 25px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100px;
}

#services .price-list th:nth-child(2) {
    width: 125px;
}

#services .price-list td:nth-child(2) {
    text-align: center;
}

#services .price-list td:last-child {
    padding-right: 25px;
    text-align: center;
}

#services .price-list td .sm {
    font-size: 15px;
    line-height: 1.2;
    color: #575f75;
}

#services .price-list td.conditions {
    color: #575f75;
    font-style: italic;
    text-align: left;
    font-size: 15px;
    line-height: 1.2;
}

.labour-only {
    margin-top: 20px;
    margin-left: 25px;
    font-style: italic;
    color: #575f75;
}

@media only screen and (max-width: 991px) {
    #services .list-frame {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #services .price-list td {
        font-size: 16px;
    }

    #services .price-list td .sm {
        font-size: 14px;
    }

    #services .price-list th:first-child {
        padding-left: 15px;
        font-size: 18px;
    }

    #services .price-list td:first-child {
        padding-left: 15px;
    }
    
    #services .price-list th:last-child {
        padding-right: 15px;
        width: 86px;
    }
    
    #services .price-list th:nth-child(2) {
        width: 81px;
        text-align: center;
    }
    
    #services .price-list td:last-child {
        padding-right: 15px;
    }
    
    .labour-only {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #services .price-list th:nth-child(2) {
        width: 125px;
    }
}