        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #FFFFFF; 
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }

        .container {
            text-align: center;
            max-width: 800px; 
            width: 100%;
        }

        .logo {
            margin-bottom: 20px;
        }
        .search-form {
            display: flex; 
	    width:100%;
            gap: 10px;
            align-items: center; 
            justify-content: center;
        }
        .search-box {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            width: 100%;
        }

        .search-input {
            width: 80%; 
            padding: 12px 15px;
            border: 1px solid #dfe1e5;
            border-radius: 24px;
            font-size: 16px;
            outline: none;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            transition: box-shadow 0.3s ease;
        }

        .search-input:focus {
            box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        }

        .search-button {
            background-color: #4285F4;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 24px;
            font-size: 14px;
            cursor: pointer;
            margin-left: 5px;
            transition: background-color 0.3s ease;
        }

        .search-button:hover {
            background-color: #357ae8;
        }

        .intro-text {
            font-size: 18px;
            color: #555555;
            line-height: 1.6;
            margin-bottom: 10px;
				display: flex;
                font-size: 16px;
				justify-content:space-between;
				text-align: justify;
        }

        .popular-searches h3 {
            font-size: 20px;
            color: #333333;
            margin-bottom: 15px;
        }

        .popular-searches ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px; 
        }

        .popular-searches li {
            background-color: #f2f2f2;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: #666666;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .popular-searches li:hover {
            background-color: #e0e0e0;
            color: #333333;
        }

        @media (max-width: 768px) {
            .search-box {
                flex-direction: column;
                align-items: center;
            }
            .search-input {
                width: 90%;
                margin-bottom: 15px;
            }
            .search-button {
                margin-left: 0;
                width: 90%;
            }
            .intro-text {
		display: flex;
                font-size: 16px;
				justify-content:space-between;
				text-align: justify;
            }
            .popular-searches ul {
                flex-direction: column;
                align-items: center;
            }
            .popular-searches li {
                width: 80%;
            }
        }
