            /* ==== TESTIMONIALS ==== */
            .testimonials {
                text-align: center;
            }
            
            .testimonial-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
                margin-top: 50px;
            }
            
            .testimonial-card {
                background: rgba(30, 30, 30, 0.7);
                padding: 30px;
                border-radius: 10px;
                border-left: 3px solid var(--primary);
                text-align: left;
                transition: transform 0.3s;
            }
            
            .testimonial-card:hover {
                transform: translateY(-10px);
                background: rgba(40, 40, 40, 0.9);
            }
            
            .testimonial-text {
                font-style: italic;
                margin-bottom: 20px;
                color: var(--secondary);
            }
            
            .testimonial-author {
                font-weight: bold;
                color: var(--accent);
            }