
        .az-media-proof {
            width: 100%;
            padding: 80px 2%; 
            background: #111; 
            color: #fff;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
            position: relative;
        }

        .az-proof-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .az-quote-area { flex: 1.2; position: relative; }
        .az-quote-area h2 {
            font-size: 26px; font-weight: 300; line-height: 1.5;
            margin: 0; color: #efefef; padding: 0 40px;
        }

        .quote-mark {
            font-size: 60px; color: #cc0000; font-family: serif;
            position: absolute; height: 40px; line-height: 1;
        }
        .q-start { top: -25px; left: 0; } 
        .q-end { bottom: 25px; right: 0; transform: rotate(180deg); }

        .az-media-name {
            margin-top: 25px; margin-left: 40px;
            font-size: 13px; letter-spacing: 2px; color: #86868b; text-transform: uppercase;
        }

      
        .az-cert-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .az-cert-item {
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #333;
            background: rgba(255,255,255,0.02);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 10px;
        }

        .az-cert-item:hover {
            border-color: #cc0000;
            background: rgba(204, 0, 0, 0.05);
        }

        .az-cert-item img.cert-icon {
            max-height: 50px;
            max-width: 90%;
            object-fit: contain;
            filter: brightness(0) invert(1); 
            opacity: 0.8;
            transition: 0.3s;
        }

        .az-cert-item:hover img.cert-icon { opacity: 1; transform: scale(1.05); }
        
        .az-cert-label {
            font-size: 9px; margin-top: 8px;
            color: #555; letter-spacing: 1px;
        }

      
        .az-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            overflow-y: auto;
            padding: 50px 0;
            cursor: zoom-out;
        }

        .az-modal-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; 
            width: 100%;
        }

        .az-modal-content {
            width: auto;
            max-width: 85%;
            border: 4px solid #fff;
            background: #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
            cursor: default;
        }

        .az-modal.active { display: block; }

        @media (max-width: 868px) {
            .az-proof-container { flex-direction: column; text-align: center; }
            .az-quote-area h2 { padding: 0 20px; font-size: 22px; }
        }
    