#services {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#services header {
    width: 100%;
    height: fit-content;
    max-width: 500px;
}

#services main {
    width: 100%;
    max-width: 500px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
    gap: 20px;
}
#services main .category {
    width: 100%;
    height: fit-content;
    margin-top: 10px;
}
#services main .category h3 {
    width: 100%;
    height: fit-content;
    text-align: left;
    font-size: 20px;
    font-weight: 300;
    color: #fefefe99;
    font-family: "Lato";
    text-transform: uppercase;
}

#services main .service {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238, 238, 238, 0.119);
    padding-bottom: 6px;
}
#services main .service h4 {
    width: fit-content;
    height: fit-content;
    font-size: 24px;
    color: #e8e8e8;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: "Bebas";
}
#services main .service p {
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    font-weight: normal;
    color: #fefefe;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: "Bebas";
    font-size: 24px;
}

