    
        /* App-specific styles */
        .app-hero {
            background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.1));
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            margin: 40px 0;
        }
        
        .app-hero h1 {
            font-size: 3em;
            color: #f0c159;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .download-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .download-btn {
            background: linear-gradient(135deg, #f0c159, #ff6900);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 15px;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1em;
            transition: all 0.3s;
            min-width: 200px;
            justify-content: center;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(240, 193, 89, 0.4);
        }
        
        .download-btn.ios {
            background: linear-gradient(135deg, #000, #333);
        }
        
        .download-btn.ios:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .app-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .feature-highlight {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(240, 193, 89, 0.3);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .feature-highlight:hover {
            transform: translateY(-5px);
            border-color: #f0c159;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .feature-highlight .icon {
            font-size: 3.5em;
            margin-bottom: 20px;
        }
        
        .feature-highlight h3 {
            color: #f0c159;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .feature-highlight p {
            color: #abb8c3;
            line-height: 1.6;
        }
        
        .app-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
            background: rgba(240, 193, 89, 0.05);
            padding: 40px;
            border-radius: 15px;
        }
        
        .app-stat {
            text-align: center;
        }
        
        .app-stat .number {
            font-size: 2.5em;
            font-weight: bold;
            color: #f0c159;
            display: block;
            margin-bottom: 10px;
        }
        
        .app-stat .label {
            color: #abb8c3;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 0.5px;
        }
        
        .comparison-table {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            margin: 60px 0;
        }
        
        .comparison-table h3 {
            color: #f0c159;
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            text-align: center;
        }
        
        .comparison-header {
            font-weight: bold;
            color: #f0c159;
            padding: 15px;
            background: rgba(240, 193, 89, 0.1);
            border-radius: 8px;
        }
        
        .comparison-row {
            padding: 15px;
            color: #abb8c3;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .checkmark {
            color: #00d084;
            font-size: 1.2em;
        }
        
        .crossmark {
            color: #ff4444;
            font-size: 1.2em;
        }
        
        /* App images gallery styles */
        .app-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .app-gallery-item {
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .app-gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .app-gallery img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .app-gallery img:hover {
            box-shadow: 0 15px 35px rgba(240, 193, 89, 0.3);
        }
        
        .app-main-image {
            text-align: center;
            margin: 40px 0;
        }
        
        .app-main-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            max-height: 500px;
            transition: all 0.3s ease;
        }
        
        .app-main-image img:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(240, 193, 89, 0.2);
        }

        @media (max-width: 768px) {
            .app-hero h1 {
                font-size: 2em;
            }
            
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .app-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .app-main-image img {
                max-height: 300px;
            }
        }