.mk-testimonials-section {
    padding: 80px 30px;
    background-color: #f8f8f8;
    position: relative;
}

.mk-testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

.mk-testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.mk-testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.mk-testimonials-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.mk-testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #1a1a1a;
    border-radius: 12px;
    padding: 50px 30px 30px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mk-testimonial-avatar {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #333;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.mk-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mk-testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

.mk-testimonial-role {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.mk-testimonial-divider {
    width: 50px;
    height: 1px;
    background: #666;
    margin: 0 auto 25px;
}

.mk-testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #ccc;
    text-align: center;
    line-height: 1.8;
    position: relative;
}

.mk-testimonial-text::before {
    content: '"';
    font-size: 2.5rem;
    color: #444;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.mk-testimonial-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #999;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mk-testimonial-read-more:hover {
    color: #fff;
}

.mk-testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mk-testimonial-nav:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.mk-testimonial-prev {
    left: -25px;
}

.mk-testimonial-next {
    right: -25px;
}

@media (max-width: 1024px) {
    .mk-testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    .mk-testimonials-section h2 {
        font-size: 2rem;
    }
    .mk-testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .mk-testimonial-prev {
        left: 0;
    }
    .mk-testimonial-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .mk-testimonials-section {
        padding: 50px 20px;
    }
    .mk-testimonial-card {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .mk-testimonial-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    .mk-testimonial-name {
        font-size: 1.3rem;
    }
    .mk-testimonial-role {
        font-size: 0.7rem;
    }
    .mk-testimonial-text {
        font-size: 1rem;
    }
    .mk-testimonials-section h2 {
        font-size: 1.8rem;
    }
    .mk-testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .mk-testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .mk-testimonial-prev {
        left: 10px;
        top: 40%;
    }
    .mk-testimonial-next {
        right: 10px;
        top: 40%;
    }
}
