body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
}

.container {
    text-align: center;
}

.logo {
    max-width: 272px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.search-bar {
    margin-bottom: 20px;
}

.search-input {
    width: 500px;
    padding: 10px 20px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
}

.search-input:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.buttons {
    display: flex;
    justify-content: center;
}

.search-button {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #5f6368;
    font-size: 14px;
    margin: 11px 4px;
    padding: 8px 16px;
    cursor: pointer;
    outline: none;
}

.search-button:hover {
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    .search-input {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    .search-input {
        width: 250px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .search-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 320px) {
    .logo {
        max-width: 120px;
    }

    .search-input {
        width: 200px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .search-button {
        font-size: 10px;
        padding: 4px 8px;
    }
}