       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            padding-bottom: 70px; /* Memberikan ruang untuk navbar bawah */
        }

        .navbar {
            background-color: white;
            padding: 0.8rem 1rem;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: none; /* Sembunyikan logo di navbar bawah */
        }

        .nav-menu {
            display: flex;
            list-style: none;
            width: 100%;
            justify-content: space-around;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.8rem;
        }

        .nav-link i {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .nav-link:hover, .nav-link.active {
            color: #3498db;
        }

        .mobile-menu-btn {
            display: none;
        }

        /* Content Styles */
        .content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        h1 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        section {
            min-height: 100vh;
            padding: 2rem 0;
            border-bottom: 1px solid #eee;
        }

        section:last-child {
            border-bottom: none;
        }

        /* Desktop Styles */
        @media screen and (min-width: 769px) {
            .navbar {
                top: 0;
                bottom: auto;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            
            body {
                padding-bottom: 0;
                padding-top: 70px;
            }
            
            .logo {
                display: block;
                color: #333;
                font-size: 1.5rem;
                font-weight: bold;
                text-decoration: none;
            }
            
            .nav-menu {
                width: auto;
                gap: 2rem;
                justify-content: flex-end;
            }
            
            .nav-link {
                flex-direction: row;
                font-size: 1rem;
            }
            
            .nav-link i {
                font-size: 1rem;
                margin-bottom: 0;
                margin-right: 0.5rem;
            }
        }
