

        .mobile-home-page-body .menu-container {
            position: fixed;
            top: 220px; /* Adjust this value based on header height */
            left: 0;
            width: 100%;
            height: calc(100vh - 200px); /* Adjust for header and footer */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        .mobile-home-page-body .menu-carousel {
            position: relative;
            width: 300px;
            height: 400px;
            perspective: 1000px;
        }

        .mobile-home-page-body .menu-item {
            position: absolute;
            width: 100%;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            font-size: 18px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            user-select: none;
        }

        .mobile-home-page-body .menu-item.active {
            font-weight: 700;
            font-size: 22px;
            color: white;
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-home-page-body .menu-item.clickable {
            cursor: pointer;
            pointer-events: auto;
        }

        .mobile-home-page-body .menu-item:not(.active) {
            pointer-events: none;
        }

        .mobile-home-page-body .background-slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden; /* Ensure layers don't spill out */
        }

        .mobile-home-page-body .background-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0; /* Start hidden */
            transition: opacity 1.5s ease-in-out; /* Smooth transition for opacity */
            z-index: 0; /* Ensure initial z-index is 0 */
            filter: blur(2px); /* Light blur effect */
        }

        .mobile-home-page-body .background-layer.current-bg {
            opacity: 1; /* Current image is visible */
        }

        .mobile-home-page-body .content-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .mobile-home-page-body .content-section.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .mobile-home-page-body .content-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .mobile-home-page-body .content-section p {
            font-size: 16px;
            line-height: 1.6;
            max-width: 300px;
        }

        .mobile-home-page-body .close-btn {
            position: absolute;
            top: 30px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fae7c9;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            z-index: 10001;
        }

.mobile-home-page-body #mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.mobile-home-page-body #mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    z-index: 101;
    background-color: transparent;
}

.mobile-home-page-body .header-buttons {
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
}

.mobile-home-page-body .header-button {
    display: inline-block;
    padding: 0.7rem 0.5rem;
    background-color: beige;
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-home-page-body .header-button:hover {
    background-color: transparent;
    color: #fae7c9;
}

.mobile-home-page-body .header-button.button {
    background-color: #4a7c59; /* Зеленый цвет */
    border-color: #4a7c59;
    color: #fae7c9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-home-page-body .header-button.button:hover {
    background-color: #fae7c9;
    color: #4a7c59;
}