.reviews-section {
    padding: 150px 0 80px 0;
    background: #fff;
}

.reviews-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.reviews-title {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 60px 0;
    color: #060607;
}

.reviews-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.reviews-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.reviews-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.reviews-button-wrapper {
    text-align: center;
}

.reviews-button {
    display: inline-block;
    padding: 15px 40px;
    background: #060607;
    color: #fff;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-button:hover {
    background: rgba(6, 6, 7, 0.8);
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0 60px 0;
    }
    
    .reviews-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .reviews-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
