 .testimonial-card {
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
    }

    .thumb-icon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #d0e7f7;
        background-color: #f0f4f8;
        padding: 5px;
        overflow: hidden;
    }

    .thumb-icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .quote-icon i {
        font-size: 24px;
        margin: 0;
    }

    .testimonial-card p {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    .testimonial-footer {
        font-size: 13px;
        color: #555;
        border-top: 1px solid #d0e7f7;
        padding-top: 10px;
    }

    @media(max-width: 768px) {
        .testimonial-card {
            margin-bottom: 20px;
        }
    }