body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #414040;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo-container {
    margin-bottom: 10px;
}

.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: #600000;
    margin: 0;
    letter-spacing: -1px;
}

.logo-image {
    height: 92px;
    width: auto;
}

.tagline {
    font-size: 18px;
    color: #5f6368;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.search-box {
    position: relative;
    width: 600px;
    margin-top: 20px;
}

#searchInput {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 11px;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#searchInput:focus {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 8px;
    display: none;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.footer {
    background-color: #f2f2f2;
    padding: 20px 0;
    border-top: 1px solid #e4e4e4;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        width: 90%;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 16px;
    }
}