/* Основные стили секции */
.section.text-section {
    padding: 20px;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

/* Стили заголовка */
.section.text-section .heading {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Стили для списка обзоров */
.review_list2 ul {
    list-style-type: none;
    padding: 0;
}

.review_list2 li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

/* Стили для контейнера с изображением */
.image_container2 {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.image_container2 img {
    border-radius: 5px;
}

/* Стили для звездного рейтинга */
.stars.rating {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.stars.rating svg {
    margin-right: 5px;
}

/* Стили для текстового контейнера */
.text_container2 {
    flex-grow: 1;
}

.text_container2 .text {
    margin-bottom: 10px;
}

.text_container2 h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #0056b3;
}

.text_container2 p {
    margin: 0 0 10px 0;
    color: #555;
}

.text_container2 .revLink a {
    color: #0056b3;
    text-decoration: none;
}

.text_container2 .revLink a:hover {
    text-decoration: underline;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

.big-button {
    display: inline-block;
    padding: 35px 50px;
    font-size: 18px;
    font-weight: bold;
    color: #00d9ff;
    background-color: #ef0b11;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.big-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.big-button:active {
    background-color: #004085;
    transform: translateY(0);
}