        /* Page-specific styles */
        .learn-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .learn-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .learn-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .benefits-section {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .benefit-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .benefit-card h3 {
            font-size: 1.3rem;
            color: #1e293b;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .benefit-card p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .benefit-list {
            list-style: none;
            padding: 0;
        }
        
        .benefit-list li {
            color: #64748b;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .benefit-list li i {
            color: #22c55e;
            font-size: 0.9rem;
        }
        
        .use-cases-section {
            padding: 80px 0;
            background: white;
        }
        
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .use-case-item {
            background: #f8fafc;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .use-case-item:hover {
            background: white;
            border-color: #667eea;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .use-case-item i {
            font-size: 2rem;
            color: #667eea;
            margin-bottom: 1rem;
        }
        
        .use-case-item h4 {
            color: #1e293b;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .use-case-item p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta {
            background: white;
            color: #667eea;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        
        .btn-cta.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-cta.secondary:hover {
            background: white;
            color: #667eea;
        }
        
        /* Login Button Styling - Same as index.php */
        .login-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
            border: 2px solid transparent !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 0.5rem !important;
        }
        
        .login-btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
        }
        
        .login-btn i {
            font-size: 0.9rem;
        }

        /* Mobile responsive - Same as index.php */
        @media (max-width: 768px) {
            .navbar.open .nav-links .login-btn {
                margin-top: 0.5rem;
                text-align: center;
                justify-content: center;
            }
            
            .learn-hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .use-cases-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }