/* Homepage specific styles */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .feature-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px var(--shadow-light);
            transition: all 0.3s ease;
            border: none;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }
        
        .feature-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-card {
            display: block;
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 16px;
            text-decoration: none;
            color: var(--dark-gray);
            box-shadow: 0 4px 20px var(--shadow-light);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px var(--shadow-medium);
            color: var(--black);
        }
        
        .category-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .category-card h5 {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .category-card p {
            margin: 0;
            color: var(--medium-gray);
            font-size: 0.9rem;
        }
        
        /* Animations */
        .animate {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .hero-actions .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .category-card {
                padding: 1.5rem 1rem;
            }
        }