/*    <!-- Language Switch Styles --> */
        .lang-switch {
            position: absolute;
            top: 20px;
            right: 30px;
            z-index: 1000;
            display: flex;
            gap: 5px;
        }
        .lang-btn {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: 1px solid #e3b576;
            padding: 5px 15px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            border-radius: 3px;
        }
        .lang-btn.active {
            background: #e3b576;
            color: #1a1a1a;
        }
        .lang-btn:hover {
            background: #e3b576;
            color: #1a1a1a;
        }
        .logo {
            display: inline-block;
        }