#servicesSection {
    display: flex;
    align-items: center;

    background-color: #333;
    width: 100vw;
    height: 100vh;
}

#servicesSection .service-content {
    display: flex;
    flex-direction: column;
}

#servicesSection .service-content * {
    color: #FFF;
}

#servicesSection .service-content .service-description {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

#servicesSection .service-content .service-description::after {
    position: absolute;
    left: 0px;
    bottom: 0px;

    content: '';
    background-color: #FFF;
    width: 75px;
    height: 3px;
}

#servicesSection .service-content .service-description p {
    width: 100%;
    max-width: 950px;

    font-size: 32px;
    line-height: 44px;
}

#servicesSection .service-content .service-list .service-list-title {
    border-bottom: 2px solid #FFF;
    width: 100%;
    max-width: 950px;
    margin-bottom: 24px;
    padding-bottom: 16px;

    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 20px;
    font-weight: 400;
}

#servicesSection .service-content .service-list ul {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding-inline-start: 0px;
    list-style: none;
}

#servicesSection .service-content .service-list ul li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

#servicesSection .service-content .service-list ul li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);

    content: '';
    background-color: #FFF;

    width: 10px;
    height: 10px;
}