.mvp-reviews-section {
    background-color: #ffffff;
    padding: 60px 0;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

.mvpr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mvp-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #1bbaed;
}

.mvp-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.mvpr-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mvpr-card {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mvpr-header {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mvpr-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mvpr-arrows {
    display: flex;
    gap: 15px;
}

.mvpr-arrows span {
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mvpr-arrows span:hover {
    opacity: 1;
}

.mvpr-content {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mvpr-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.mvpr-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
    margin-bottom: 15px;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #114960;
    margin-top: 0.5rem;
    text-align: right;
}

.mvpr-quote-wrap {
    flex: 1;
}

.quote-icon {
    font-size: 40px;
    color: #000000;
    opacity: 0.8;

    display: block;
    line-height: 1;
}

.quote-icon::before {
    content: "\201C";
    font-family: serif;
}

.quote-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .mvpr-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 20px;
    }

    .mvpr-card {
        min-width: 85%;
        scroll-snap-align: center;
    }

    .mvp-heading {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .mvpr-card {
        min-width: 95%;
    }

    .mvpr-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mvpr-author {
        margin-bottom: 20px;
    }
}