:root {
            --primary-blue: #4285F4;
            --primary-red: #EA4335;
            --primary-yellow: #FBBC05;
            --primary-green: #34A853;
            --primary-orange: #FF9800;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Main Search Logo */
        .main-logo {
            display: block;
            width: 150px;
            height: auto;
            margin: 0 auto 8px;
        }
        
        /* Search Bar */
        .search-container {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #dfe1e5;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s;
            text-align: left;
        }
        
        .search-box:hover, .search-box:focus {
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
        .search-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .search-btn {
            padding: 10px 20px;
            background-color: #f8f9fa;
            border: 1px solid #f8f9fa;
            border-radius: 4px;
            color: #3c4043;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-btn:hover {
            border: 1px solid #dadce0;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }
        
        /* Languages */
        .languages {
            text-align: center;
            margin: 30px 0;
            font-size: 13px;
        }
        
        .languages a {
            color: #1a0dab;
            text-decoration: none;
            margin: 0 5px;
        }
        
        .languages a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: #f2f2f2;
            position: fixed;
            bottom: 0;
            width: 100%;
            padding: 15px 0;
            border-top: 1px solid #dadce0;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-left, .footer-right {
            display: flex;
            gap: 20px;
        }
        
        /* Navigation */
        .nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 15px 20px;
            background-color: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            margin-left: 15px;
            font-size: 14px;
        }
        
        .nav a:hover {
            text-decoration: underline;
        }
        
        /* Sign In Button */
        .sign-in-btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #3367d6;
            text-decoration: none;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }
        
        /* Search Suggestions */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #dfe1e5;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 6px rgba(32,33,36,0.28);
            z-index: 100;
            display: none;
        }
        
        .suggestion-item {
            padding: 10px 20px;
            cursor: pointer;
            text-align: left;
        }
        
        .suggestion-item:hover {
            background-color: #f8f9fa;
        }
        
        /* Language Switcher */
        .language-switcher {
            position: absolute;
            top: 10px;
            right: 10px;
        }
        
        .language-btn {
            background: none;
            border: none;
            color: #1a0dab;
            cursor: pointer;
            font-size: 14px;
        }
        
        /* AI Feature */
        .ai-feature {
            text-align: center;
            margin: 20px 0;
            font-size: 14px;
            color: #555;
        }
        
        .ai-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: var(--primary-orange);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            margin-left: 5px;
        }
        
        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .nav {
                justify-content: center;
            }
            
            .header-logo {
                width: 200px;
            }
            
            .main-logo {
                width: 150px;
            }
        }
        
        @media (max-width: 480px) {
            .header-logo {
                width: 180px;
            }
            
            .main-logo {
                width: 130px;
            }
            
            .nav {
                flex-wrap: wrap;
            }
        }