/* Адаптивность */
/*@media (max-width: 1200px) {
    .header__info {
        flex-direction: column;
        text-align: center;
    }

    .banner__content h1 {
        font-size: 2rem;
    }

    .banner__content h2 {
        font-size: 1.5rem;
    }

    .banner__image {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .reviews {
        padding: 0;
        background-color: var(--light-gray);
    }

    .container {
        margin: 0;
        padding: 0;
    }

    .reviews h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        color: var(--primary-color);
    }

    .reviews__grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: 1fr;
        margin-right: 10px;
        gap: 0%;
    }

    .review__item {
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: center;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .review__person img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .review__item h4 {
        color: var(--primary-color);
    }

    .review__item p {
        font-style: italic;
        flex-grow: 1;
        text-align: center;
    }

    .stars img {
        align-self: flex-end;
        align-self: center;
    }

    .reviews__carousel {
        position: relative;
        overflow: hidden;
    }

    .carousel__button {
        position: absolute;
        display: initial;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 10;
    }

    .carousel__button--prev {
        left: 10px;
    }

    .carousel__button--next {
        right: 10px;
    }
}*/