* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.logo-container {
    margin-top: 100px;
    margin-bottom: 30px;
}

.logo {
    width: 272px;
    height: 92px;
}

.search-container {
    width: 100%;
    max-width: 584px;
    margin-bottom: auto;
}

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.search-box:hover, .search-box:focus-within {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: transparent;
}

.search-icon, .mic-icon {
    height: 24px;
    width: 24px;
    fill: #9aa0a6;
}

.mic-icon {
    cursor: pointer;
}

#search-input {
    flex: 1;
    height: 34px;
    border: none;
    outline: none;
    font-size: 16px;
    margin: 0 10px;
}

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

button {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-size: 14px;
    height: 36px;
    min-width: 120px;
    padding: 0 16px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

button:focus {
    border-color: #4285f4;
    outline: none;
}

.footer {
    width: 100%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    border-top: 1px solid #dadce0;
    font-size: 14px;
    color: #70757a;
    margin-top: 20px;
}

.footer-left, .footer-right {
    display: flex;
}

.footer a {
    color: #70757a;
    text-decoration: none;
    padding: 0 15px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-left, .footer-right {
        padding: 10px 0;
    }
    
    .logo-container {
        margin-top: 50px;
    }
}

