 
 
 .testimonials-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .testimonial-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(242, 194, 56, 0.4);
            box-shadow: 0 15px 30px rgba(242, 194, 56, 0.1);
        }

        .testimonial-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
            transition: transform 0.3s ease;
            display: block;
            background: rgba(0, 0, 0, 0.2);
        }

        .testimonial-card:hover .testimonial-img {
            transform: scale(1.02);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
        }

        .modal-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(242, 194, 56, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: #000;
            font-size: 20px;
            cursor: pointer;
        }

        .modal-close:hover {
            background: #f2c238;
        }