.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 10px 0;
}
.logo {
    height: 150px;
    max-width: 100%;
    object-fit: contain;
}
.sticky-menu {
    position: sticky;
    top: 0;
    background-color: black;
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.categories-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 20px;
}
.categories-link {
    display: block;
    width: 150px;
    height: 75px;
    position: relative;
    text-decoration: none;
}
.categories-item {
    width: 150px;
    height: 75px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}
.categories-container .text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}