  /* Base Styles */
        :root {
            --primary: #0066ff;
            --primary-dark: #0052d6;
            --secondary: #2dd4bf;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --border: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: rgba(0, 102, 255, 0.05);
        }
        
        .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-primary {
            color: var(--primary);
        }
        
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
/* Header Styles - Non-sticky */
header {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    z-index: 101;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .header-container {
        padding: 25px 0; /* Increased padding for bigger background area */
        min-height: 70px; /* Minimum height for the header */
    }
    
    .logo {
        justify-content: flex-start; /* Align logo to left on mobile */
        margin-right: auto; /* Push other elements to the right */
        flex: 1; /* Take available space to push menu button to far right */
    }
    
    .logo-img {
        height: 45px; /* Increased logo size on mobile */
        width: auto;
    }
    
    /* Ensure mobile menu button stays on the far right */
    .mobile-menu-btn {
        margin-left: auto; /* Push menu button to the far right */
        flex-shrink: 0; /* Prevent button from shrinking */
    }
    
    /* Remove any centering that might be affecting the header */
    .header-container {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 20px 0; /* Slightly reduced but still bigger than before */
        min-height: 65px;
    }
    
    .logo-img {
        height: 40px; /* Maintain increased size on small screens */
    }
}

/* Ensure the header background covers the increased area */
header {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}
        
nav {
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 101;
}
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%230066ff" opacity="0.03"/></svg>');
            background-size: cover;
        }
        
        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .hero-badge i {
            color: var(--success);
        }
        
        .hero-actions {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat {
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        /* Services Section */
        .services {
            background: #f8fafc;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .service-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .service-1 .service-icon {
            background: #e0f2fe;
            color: #0369a1;
        }
        
        .service-2 .service-icon {
            background: #f0fdf4;
            color: #16a34a;
        }
        
        .service-3 .service-icon {
            background: #fef7cd;
            color: #ca8a04;
        }
        
        .service-4 .service-icon {
            background: #fae8ff;
            color: #c026d3;
        }
        
        .service-5 .service-icon {
            background: #ffedd5;
            color: #ea580c;
        }
        
        .service-6 .service-icon {
            background: #e0e7ff;
            color: #4f46e5;
        }
        
        .service-7 .service-icon {
    background: #f3e8ff;
    color: #7c3aed;
}
        
        /* How It Works Section */
        .steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .steps::before {
            content: "";
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border);
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .step:hover .step-number {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Testimonials Section */
        .testimonials {
            background: #f8fafc;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            position: relative;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 2;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            color: white;
        }
        
        .cta p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .cta .btn {
            background: white;
            color: var(--primary);
        }
        
        .cta .btn:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
        }
        
      /* Mobile Menu Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Menu Close Button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 102;
}

.mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px 20px;
            }
            
            .hero::before {
                width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            /* Hide desktop nav, show mobile menu button */
            nav.desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-actions {
                display: none;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero::before {
                width: 100%;
                opacity: 0.1;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-actions .btn {
                width: 100%;
                text-align: center;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-value {
                font-size: 1.7rem;
            }
            
            .steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .steps::before {
                display: none;
            }
            
            .step {
                padding: 0 20px;
            }
            
            .step-number {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }
            
            .features-grid,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card,
            .service-card {
                padding: 30px 20px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .cta {
                padding: 70px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            section {
                padding: 50px 0;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat {
                flex-direction: row;
                align-items: center;
                gap: 10px;
            }
            
            .stat-value {
                font-size: 1.5rem;
            }
            
            .card {
                padding: 20px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .btn-large {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }
        
       /* API Integration Section */
.api-section {
    background: white;
    padding: 80px 0;
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.api-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
    color: var(--dark);
}

.api-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray);
    line-height: 1.6;
}

.api-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.api-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.api-feature i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
    width: 24px;
}

.api-feature h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--dark);
}

.api-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.api-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.api-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Code Snippet Styling */
.api-visual {
    display: flex;
    justify-content: center;
}

.code-snippet {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 100%;
}

.code-header {
    background: #0f172a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.code-dots span:first-child {
    background: #ef4444;
}

.code-dots span:nth-child(2) {
    background: #f59e0b;
}

.code-dots span:last-child {
    background: #10b981;
}

.code-header span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 25px;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-content code {
    background: none;
    font-family: inherit;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .api-content {
        gap: 40px;
    }
    
    .api-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .api-section {
        padding: 60px 0;
    }
    
    .api-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .api-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .api-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .api-features {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .api-feature {
        text-align: left;
        gap: 12px;
    }
    
    .api-feature i {
        font-size: 1.3rem;
        margin-top: 2px;
    }
    
    .api-feature h4 {
        font-size: 1.1rem;
    }
    
    .api-feature p {
        font-size: 0.9rem;
    }
    
    .api-actions {
        justify-content: center;
        gap: 12px;
    }
    
    .api-actions .btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .code-content {
        padding: 20px;
    }
    
    .code-content pre {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .code-header {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .api-section {
        padding: 50px 0;
    }
    
    .api-text h2 {
        font-size: 1.6rem;
    }
    
    .api-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .api-features {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .api-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .api-feature i {
        margin-top: 0;
        align-self: center;
    }
    
    .api-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .api-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .code-content {
        padding: 15px;
    }
    
    .code-content pre {
        font-size: 0.75rem;
    }
    
    .code-header {
        padding: 10px 15px;
    }
    
    .code-dots span {
        width: 10px;
        height: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .api-section {
        padding: 40px 0;
    }
    
    .api-text h2 {
        font-size: 1.4rem;
    }
    
    .api-text p {
        font-size: 0.9rem;
    }
    
    .code-content pre {
        font-size: 0.7rem;
    }
    
    .api-actions .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Ensure code snippet is scrollable on very small screens */
.code-content {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.code-content pre {
    min-width: min-content; /* Prevent content from shrinking too much */
}

/* Improve touch targets for mobile */
.api-actions .btn {
    min-height: 44px; /* Minimum touch target size */
}

.api-feature {
    padding: 8px 0; /* Add touch padding */
}

/* Download App Section */
.download-app {
    background: white;
    padding: 80px 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-text {
    width: 100%;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.download-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
}

.app-feature i {
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.app-feature span {
    color: var(--dark);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.app-store-btn,
.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn img,
.google-play-btn img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-app {
        padding: 60px 0;
    }
    
    .download-content {
        gap: 40px;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .download-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        max-width: 400px;
    }
    
    .app-feature {
        justify-content: center;
        text-align: center;
    }
    
    .download-buttons {
        gap: 12px;
    }
    
    .app-store-btn img,
    .google-play-btn img {
        height: 45px;
    }
    
    .app-mockup {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .download-app {
        padding: 50px 0;
    }
    
    .download-text h2 {
        font-size: 1.8rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn img,
    .google-play-btn img {
        height: 40px;
    }
    
    .app-mockup {
        max-width: 250px;
    }
    
    .app-features {
        max-width: 100%;
    }
}

/* Large screens - keep centered but adjust spacing */
@media (min-width: 1200px) {
    .download-content {
        max-width: 900px;
    }
    
    .download-text h2 {
        font-size: 2.8rem;
    }
    
    .download-text p {
        font-size: 1.2rem;
    }
    
    .app-features {
        max-width: 600px;
    }
}