.testimonials {
        padding: 70px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }    .testimonials .testimonials-container {
        max-width: 95%;
        margin: 0 auto;
    }

    .testimonials .testimonials-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .testimonials .testimonials-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .testimonials .testimonials-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }.testimonials .testimonials-slider {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .testimonials .testimonials-track {
        display: flex;
        gap: 30px;
        animation: slide 40s linear infinite;
        width: fit-content;
    }

    .testimonials .testimonials-track:hover {
        animation-play-state: paused;
    }

    .testimonials .testimonial-card {
        background: white;
        padding: 30px 30px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid #f1f3f4;
        position: relative;
        width: 500px;
        flex-shrink: 0;
    }

    .testimonials .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonials .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 30px;
        font-size: 4rem;
        color: #28a745;
        font-family: serif;
        line-height: 1;
        opacity: 0.3;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }    .testimonials .stars {
        display: flex;
        gap: 5px;
        margin-bottom: 20px;
    }

    .testimonials .stars i {
        color: #ffc107;
        font-size: 1.1rem;
    }

    .testimonials .testimonial-text {
        font-size: 1.05rem;
        color: #495057;
        line-height: 1.6;
        margin-bottom: 25px;
        font-style: italic;
    }

    .testimonials .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .testimonials .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #28a745, #20c997);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .testimonials .author-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .testimonials .author-name {
        font-weight: 600;
        color: #212529;
        font-size: 1rem;
    }

    .testimonials .author-title {
        font-size: 0.9rem;
        color: #6c757d;
    }

    .testimonials .testimonials-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
    }    .testimonials .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .testimonials .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #28a745;
        line-height: 1;
    }

    .testimonials .stat-stars {
        display: flex;
        gap: 3px;
    }

    .testimonials .stat-stars i {
        color: #ffc107;
        font-size: 1rem;
    }

    .testimonials .stat-label {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .testimonials {
            padding: 80px 20px;
        }        .testimonials .testimonials-title {
            font-size: 2rem;
        }

        .testimonials .testimonials-subtitle {
            font-size: 1.1rem;
        }

        .testimonials .testimonial-card {
            padding: 30px 25px;
            width: 350px;
        }

        .testimonials .testimonials-stats {
            padding: 30px;
            gap: 30px;
        }

        .testimonials .stat-number {
            font-size: 2rem;
        }
    }    @media (max-width: 480px) {
        .testimonials .testimonial-card {
            padding: 25px 20px;
        }

        .testimonials .testimonials-stats {
            padding: 25px 20px;
        }
    }