    .title-category {
        text-align: center;
        background: #081B4F;
        padding: .75rem 1rem .5rem;
        position: relative;
        border-radius: 0 10px;
        color: #fff;
        text-transform: uppercase;
        font-family: "Fester-Bold", sans-serif;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .title-category:before {
        position: absolute;
        content: "";
        background: #fff;
        width: 100%;
        height: 100%;
        top: 5px;
        left: 0;
        border: 1px solid #1a1a1a;
        border-right: 0;
        border-radius: 0 10px;
        z-index: -1;
    }

    .main-menu-container {
    background-color: #f8f9fa;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.menu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.menu-item a {
    display: block;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-item a:hover {
    background-color: #e9ecef;
    color: #007bff;
    transform: translateY(-2px);
}

.menu-item.active a {
    background-color: #007bff;
    color: white;
    font-weight: 600;
}

.menu-item.active a:hover {
    background-color: #0056b3;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: #0056b3;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}

.gallery-item .logo-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .logo-overlay {
    opacity: 0.9;
}


        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 10px;
                right: 20px;
            }

            .menu-list {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: #f8f9fa;
                padding: 10px 0;
            }

            .menu-list.active {
                display: flex;
            }

            .menu-item {
                width: 100%;
                text-align: center;
            }

            .menu-item a {
                width: 100%;
                padding: 15px;
                border-bottom: 1px solid #e9ecef;
            }

            .main-menu-container {
                position: relative;
                padding: 10px;
                background-color: #ffffffff;
                box-shadow: 0 2px 5px rgba(241, 36, 36, 0.1);
                border-radius: 2px;
                max-width: 1200px;
                margin: 0 auto;
                
            }

            .gallery-item img {
                height: 200px;
            }
        }