/* Стили для страницы с отзывами */

/* Заголовок страницы */
.nop852 {
    text-align: center;
    margin-bottom: 3rem;
}

.nop852 h1 {
    margin-bottom: 1rem;
}

.nop852 p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Контейнер с отзывами */
.qrs753 {
    margin-bottom: 3rem;
}

.tuv963 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Карточка отзыва */
.wxy159 {
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wxy159:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Информация о клиенте */
.zab258 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.zab258 img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.cde741 h3 {
    margin-bottom: 0.3rem;
}

.fgh842 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Звездный рейтинг */
.ijk953 {
    display: flex;
}

.lmn753 {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

/* Текст отзыва */
.opq147 {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

/* Информация о туре */
.rst753 {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* Секция призыва к действию */
.uvw963 {
    text-align: center;
    padding: 3rem 0;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.uvw963 h2 {
    margin-bottom: 1rem;
}

.uvw963 p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.xyz147 {
    display: inline-block;
}

/* Адаптивная верстка */
@media (max-width: 768px) {
    .tuv963 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zab258 {
        flex-direction: column;
        text-align: center;
    }

    .zab258 img {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .ijk953 {
        justify-content: center;
    }

    .rst753 {
        text-align: center;
    }
} 