.services {
    padding: 4rem;
    padding-top: calc(var(--header-height) + 4rem) !important;
    padding-left: 30%;
    padding-right: 30%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services img {
    margin-top: 1rem;
}

.services .images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;

    margin-top: 2rem;
}

.services .images img {
    height: 200px;
    width: auto;
    aspect-ratio: initial;
}

.services .step {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;

    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.services .step .icon {
    width: 50px;
}

.services .step .content {
    text-align: left;
}

.services .step .content h4 {
    margin-bottom: 3px;
}

@media only screen and (max-width: 865px) {
    .services {
        padding: 2rem;
        padding-left: 5%;
        padding-right: 5%;
    }
}