<style>
        /* Minimal CSS - inherits text styles from your Webflow project */
        
        /* Only add ellipsis for truncated testimonials */
        .quote-2.truncated::after {
            content: "...";
            font-weight: bold;
        }
        
        /* Make all testimonials clickable */
        .quote-2 {
            cursor: pointer;
            transition: opacity 0.2s ease;
        }
        
        .quote-2:hover {
            opacity: 0.8;
        }
        
        /* Modal Styles */
        .testimonial-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .testimonial-modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .testimonial-modal-content {
            background: #4A90E2; /* You can change this to match your testimonial background */
            color: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 500px;
            max-height: 70vh;
            overflow-y: auto;
            position: relative;
            width: 100%;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            
            /* Inherit font family from your project */
            font-family: inherit;
        }
        
        .testimonial-modal-overlay.show .testimonial-modal-content {
            transform: scale(1);
        }
        
        .testimonial-modal-quote {
            font-size: inherit; /* Inherits from your project */
            line-height: inherit; /* Inherits from your project */
            margin-bottom: 20px;
            font-family: inherit;
        }
        
        .testimonial-modal-avatar {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }
        
        .testimonial-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            opacity: 0.7;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .testimonial-modal-close:hover {
            opacity: 1;
        }
        
        .testimonial-modal-icon {
            width: 37px;
            height: 28px;
            margin-bottom: 15px;
        }
        
        .testimonial-modal-name {
            font-weight: bold;
            font-size: inherit; /* Inherits from your project */
            margin-bottom: 5px;
            font-family: inherit;
        }
        
        .testimonial-modal-position {
            font-size: inherit; /* Inherits from your project */
            opacity: 0.9;
            font-family: inherit;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonial-modal-content {
                max-height: 80vh;
                padding: 20px;
            }
            
            .testimonial-modal-overlay {
                padding: 10px;
            }
        }
    </style>
