        header {
            width: 100%;
            padding: 10px 106px;
            background: #000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
            transition: z-index 0.3s ease;
        }


        header img {
            height: 45px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #fff;
            font-size: 11px;
            letter-spacing: 1.8px;
        }

        /* ================= SIDE MENU ================= */

        .side-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: #ffffff;
            box-shadow: -6px 0 25px rgba(0, 0, 0, 0.2);
            transition: right 0.4s ease;
            z-index: 2000;
            overflow-y: auto;
        }

        .side-panel.open {
            right: 0;
        }

        /* ---------- Header ---------- */
        .side-header {
            background: #b01730;
            padding: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .side-logo {
            height: 45px;
        }

        .close-btn {
            font-size: 20px;
            cursor: pointer;
            color: #e0e0e0;
            font-weight: bold;
        }

        /* ---------- Content ---------- */
        .side-content {
            padding: 25px;
            text-align: left;
        }

        .profile-img {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .quote-hi,
        .quote-en {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        @media (max-width: 900px) {

            header {
                padding: 15px 30px;
            }

            nav ul li:not(:last-child) {
                display: none;
            }
        }


        @media (max-width: 768px) {

            header img {
                height: 36px;
            }

            .side-panel {
                width: 320px;
                right: -320px;
            }

            .side-content {
                padding: 20px;
            }

            .profile-img {
                width: 75px;
                height: 75px;
            }
        }

        @media (max-width: 480px) {

            .side-panel {
                width: 100%;
                right: -100%;
            }

            .side-panel.open {
                right: 0;
            }

            .side-header {
                padding: 18px;
            }

            .side-content {
                padding: 18px;
            }

            .profile-img {
                width: 70px;
                height: 70px;
            }

            .close-btn {
                font-size: 18px;
            }
        }