* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f0f2f5;
        }

        /* ===================== NAVBAR ===================== */
        .navbar-container {
            width: 100%;
        }

        .navbar {
            background-color: #7c8ab5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 0;
        }

        .navbar-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 25px;
            background-color: #7c8ab5;
            border-bottom: 1px solid #e9ecef;
        }

        .faculty-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faculty-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .institute-logo {
            font-weight: 800;
            font-size: 22px;
            color: #fff;
        }

        /* Main navbar */
        .navbar-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 25px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 18px 22px;
            text-decoration: none;
            color: #2d3748;
            font-weight: 600;
            font-size: 15px;
        }

        .nav-link:hover {
            color: #2c5aa0;
            background-color: #f8f9fa;
        }

        .nav-link.active {
            border-bottom: 3px solid #2c5aa0;
            color: #2c5aa0;
        }

        /* Hamburger menu */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
        }

        /* ===================== SAMBUTAN KETUA HIMATIKA ===================== */
        .sambutan-section {
            background: #0E7AC0;
            color: white;
            padding: 50px 20px;
        }

        .sambutan-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .sambutan-container img {
            width: 450px;
            height: 600px;
            border-radius: 8px;
        }

        .sambutan-text h1 {
            font-size: 34px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .sambutan-text p {
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .nama-dekan {
            margin-top: 15px;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .sambutan-container {
                flex-direction: column;
                text-align: center;
            }

            .sambutan-container img {
                width: 70%;
            }

            .hamburger-btn {
                display: block;
                color: #2d3748;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                border-top: 1px solid #eee;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-link {
                padding: 15px;
                border-bottom: 1px solid #eee;
            }

            .navbar-main {
                flex-wrap: wrap;
                padding-bottom: 10px;
            }

            .search-container {
                width: 100%;
                margin-top: 10px;
            }
        }

                /* ===================== FOOTER ===================== */
        .footer {
            background-color: #0d0d0d;
            color: #fff;
            padding: 50px 20px 20px;
            margin-top: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            width: 30%;
            min-width: 250px;
            line-height: 1.8;
        }

        .footer-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background-color: #1a1a1a;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            transition: 0.3s;
            font-size: 15px;
            width: fit-content;
        }

        .social-btn:hover {
            background-color: #333;
        }

        .social-btn.whatsapp {
            background-color: #25D366;
        }

        .social-btn.facebook {
            background-color: #3b5998;
        }

        .social-btn.instagram {
            background-color: #405DE6;
        }

        .footer-bottom {
            background-color: #373334;
            text-align: center;
            padding: 12px;
            margin-top: 40px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-column {
                width: 100%;
            }

            .social-btn {
                margin: auto;
            }
        }