.tcrev__wrapper {
    background: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.tcrev__section {
    max-width: 1200px;
    margin: 0 auto;
}

.tcrev__reviews-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 50px;
}

.tcrev__reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tcrev__review-card {
    text-align: center;
    padding: 20px;
}

.tcrev__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #b8b8b8;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tcrev__avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #b8b8b8;
}

.tcrev__review-text {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.tcrev__contact-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px;
}

.tcrev__contact-subtitle {
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tcrev__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tcrev__contact-item {
    text-align: center;
}

.tcrev__contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
}

.tcrev__contact-info {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.tcrev__contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.tcrev__contact-link:hover {
    color: #333;
}

.tcrev__copyright {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .tcrev__reviews-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tcrev__contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tcrev__wrapper {
        padding: 60px 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tcrev__reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tcrev__contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

