/* Minimal White & Black Theme */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        
        .login-btn {
            color: #4a4a4a;
        }
        
        .login-btn:hover {
            color: #1a1a1a;
            background-color: #f8f9fa;
        }
        
        .signup-btn {
            background: #1a1a1a;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .signup-btn:hover {
            background: #333;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .bar {
            width: 25px;
            height: 2px;
            background: #1a1a1a;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Search Bar - Clean Single Input */
        .search-container {
            max-width: 500px;
            margin: 0 auto 1.5rem;
        }
        
        .search-input {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            background: #fafafa;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            border-color: #1a1a1a;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .search-input::placeholder {
            color: #9ca3af;
        }
        
        /* Pill Search Buttons */
        .pill-search-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .pill-search-btn {
            background: #1a1a1a;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }
        
        .pill-search-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .pill-search-btn:active {
            transform: translateY(0);
        }
        
        /* Hero Section */
        .simple-hero {
            padding: 140px 0 80px;
            text-align: center;
            background: white;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 2.5rem;
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: #fafafa;
            border-top: 1px solid #f0f0f0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
            font-weight: 700;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .step-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        
        .step-number {
            background: #1a1a1a;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }
        
        .step-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Auth Section */
        .auth-section {
            padding: 100px 0;
            background: white;
            text-align: center;
            border-top: 1px solid #f0f0f0;
        }
        
        .auth-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .btn-secondary {
            background: white;
            color: #1a1a1a;
            border: 1px solid #e0e0e0;
        }
        
        .btn-secondary:hover {
            border-color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        /* Footer */
        
        .footer-link {
            color: #ccc;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            
            .nav-menu.active {
                display: flex;
            }
            
            .hamburger {
                display: flex;
            }
            
            .simple-hero {
                padding: 120px 0 60px;
            }
            
            .search-input {
                padding: 14px 16px;
            }
            
            .pill-search-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pill-search-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .auth-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }
