 /* Testimonials Section */
    .testimonials-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .testimonials-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section Header */
    .testimonials-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin: 0 0 2rem 0;
    }

    /* Google Rating */
    .google-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.5rem;
        background: #ffffff;
        border-left: 3px solid #4285F4;
        margin-bottom: 1rem;
    }

    .google-logo {
        height: 30px;
        width: auto;
    }

    .rating-info {
        text-align: left;
    }

    .rating-stars {
        color: #FBBC04;
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .rating-stars i {
        margin-right: 0.1rem;
    }

    .rating-text {
        font-size: 0.95rem;
        color: #666666;
        margin: 0;
    }

    .rating-text strong {
        color: #000000;
        font-size: 1.1rem;
    }

    /* Testimonials Grid */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    /* Review Card */
    .review-card {
        background: #ffffff;
        padding: 1.5rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .review-card:hover {
        border-left-color: #1E73BE;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    /* Review Header */
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .reviewer-info {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        background: #1E73BE;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .reviewer-details {
        flex: 1;
    }

    .reviewer-name {
        font-size: 1rem;
        font-weight: 600;
        color: #000000;
        margin: 0 0 0.25rem 0;
    }

    .review-date {
        font-size: 0.85rem;
        color: #666666;
        margin: 0;
    }

    .review-source {
        height: 18px;
        width: auto;
    }

    /* Review Stars */
    .review-stars {
        color: #FBBC04;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .review-stars i {
        margin-right: 0.1rem;
    }

    /* Review Text */
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    /* Testimonials CTA */
    .testimonials-cta {
        text-align: center;
        padding: 2.5rem;
        background: #ffffff;
        border-left: 3px solid #1E73BE;
    }

    .testimonials-cta p {
        font-size: 1.1rem;
        color: #000000;
        font-weight: 600;
        margin: 0 0 1.5rem 0;
    }

    .btn-testimonials {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: #1E73BE;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 0;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid #1E73BE;
    }

    .btn-testimonials:hover {
        background: #155a94;
        border-color: #155a94;
    }

    .btn-testimonials i {
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 968px) {
        .testimonials-section {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .google-rating {
            flex-direction: column;
            text-align: center;
        }

        .rating-info {
            text-align: center;
        }
    }

    @media screen and (max-width: 768px) {
        .testimonials-container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .review-card {
            padding: 1.2rem;
        }

        .testimonials-cta {
            padding: 2rem;
        }

        .btn-testimonials {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .google-logo {
            height: 25px;
        }

        .reviewer-avatar {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .review-source {
            height: 15px;
        }
    }