/* header.css */

header {
    background-color: white;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.header-left img {
    height: 60px;
    width: auto;
}

.header-center nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-weight: bold;
}

.header-center nav a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s;
}

.header-center nav a:hover {
    color: #CB5A5C;
}

.header-right a img {
    height: 32px;
    width: auto;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    .header-center {
        margin: 10px 0;
    }
}
