.hero-services {
    min-height: 760px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-services__overlay {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 80px 7vw;
}

.hero-services__box {
    background: rgba(22, 10, 10, 0.94);
    color: #fff;
    max-width: 760px;
    width: 100%;
    padding: 64px 72px;
}

.hero-services__title {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    margin: 0 0 56px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-services__list {
    display: grid;
    gap: 18px;
}

.hero-services__item {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-services__arrow {
    font-size: 32px;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-services {
        min-height: 620px;
        align-items: flex-end;
    }

    .hero-services__overlay {
        padding: 32px 20px;
    }

    .hero-services__box {
        padding: 36px 28px;
    }

    .hero-services__title {
        margin-bottom: 32px;
    }

    .hero-services__item {
        font-size: 18px;
    }
}