
        /* सरल ग्रिड स्टाइल - ऊपर इमेज, नीचे टाइटल */
        .apg-simple-grid-container {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            padding: 15px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }
        
        .apg-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .apg-section-title {
            font-size: 20px;
            font-weight: 700;
            color: #202124;
            margin: 0;
        }
        
        .apg-simple-grid {
            display: grid;
            grid-template-columns: repeat(var(--apg-columns, 3), 1fr);
            gap: 20px;
        }
        
        .apg-simple-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e8eaed;
            transition: all 0.2s ease;
            text-align: center;
        }
        
        .apg-simple-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }
        
        .apg-app-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
        }
        
        .apg-app-icon {
            margin-bottom: 12px;
        }
        
        .apg-app-img {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        
        .apg-app-img:hover {
            transform: scale(1.05);
        }
        
        .apg-placeholder-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, #4285f4, #34a853);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        
        .apg-placeholder-icon:hover {
            transform: scale(1.05);
        }
        
        .apg-app-title {
            font-size: 16px;
            font-weight: 500;
            color: #202124;
            margin: 0 0 12px 0;
            line-height: 1.3;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .apg-download-btn {
            background: #1a73e8;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            width: 100%;
            margin-top: auto;
        }
        
        .apg-download-btn:hover {
            background: #1967d2;
            color: white;
        }
        
        /* रेस्पॉन्सिव स्टाइल */
        @media (max-width: 1024px) {
            .apg-simple-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .apg-simple-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .apg-simple-item {
                padding: 12px;
            }
            
            .apg-app-img {
                width: 60px;
                height: 60px;
            }
            
            .apg-placeholder-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            
            .apg-app-title {
                font-size: 14px;
            }
            
            .apg-download-btn {
                padding: 8px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .apg-simple-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .apg-section-title {
                font-size: 18px;
            }
            
            .apg-app-img {
                width: 50px;
                height: 50px;
            }
            
            .apg-placeholder-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .apg-app-title {
                font-size: 13px;
            }
            
            .apg-download-btn {
                padding: 7px 10px;
                font-size: 12px;
            }
        }
        