body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

header {
    background-color: #0066cc;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.slogan {
    font-size: 18px;
}

.search-section {
    text-align: center;
    padding: 50px 20px;
}

.search-box input {
    padding: 12px;
    width: 300px;
    font-size: 16px;
}

.search-box button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
}

.search-box button:hover {
    background-color: #004999;
}

.results {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
}

.card {
    background: white;
    width: 240px;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
}

footer {
    background-color: #eeeeee;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}