.single-service-hero__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}
.single-service-hero__left {
    background-color: var(--bg-dark);
    padding: 50px;
    max-width: 880px;
    width: 100%;
}
.single-service-hero__right {
    max-width: 620px;
    width: 100%;
}
.single-service-hero__title {
    color: var(--white);
    font-size: var(--font-size-28-52);
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.single-service-hero__description {
    color: var(--white);
    font-size: var(--font-size-14-16);
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 40px;
    max-width: 440px;
}
#single-service-hero .btn {
    margin-bottom: 60px;
}
.sigle-service-block-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}
.sigle-service-block-advantage {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--background)
}
.sigle-service-block-advantage__image {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sigle-service-block-advantage__text {
    color: var(--txt);
    font-size: var(--font-size-14-16);
    font-weight: 500;
    line-height: 150%;
}
#single-service-hero .btn {
    max-width: 281px;
}
.single-service-hero__right {
    max-width: 620px;
    width: 100%;
}
.sigle-service-block-advantages__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .single-service-hero__left {
        padding: 15px;
    }
    .single-service-hero__container {
        gap: 15px;
    }
}
@media(max-width: 1100px) {
    .single-service-hero__container {
        flex-direction: column-reverse;
    }
    .single-service-hero__left {
        max-width: 100%;
    }
    .single-service-hero__right {
        max-height: 300px; 
        max-width: 100%;
    }
    .sigle-service-block-advantages {
        gap: 15px;
    }
    #single-service-hero .btn {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .single-service-hero__description {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .sigle-service-block-advantages {
        grid-template-columns: repeat(2, 1fr);
    }
    .sigle-service-block-advantage {
        min-height: 150px;
    }
}
@media (max-width: 600px) {
    .sigle-service-block-advantages {
        grid-template-columns: 1fr;
    }
}