		* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        :root {
        --primary-color-1: #1D5D85;
        --primary-color-2: #1484C7; 
        --accent-color: #ECB21F;
        --light-accent-color: #FFD352;
        --secondary-color-1: #08494D;
        --secondary-color-2: #2C7B80;
        --secondary-color-3: #20333D;
        --text-color: #20333D;
        --dark-color: #0d1b2a;
        --light-text-color: #FFFFFF;
        --background-color: #FFFFFF /*#f3f4f (alternative)*/;
        --light-background-color: #F5F5F5;
        --container-color-1: #FFFFFF;
        --container-color-2: #F5F5F5;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		--header-text-color: #FFFFFF;
		--header-subtitle-color: rgba(255, 255, 255, 0.9);
		--overlay-opacity: 0.85;
		--header-height: 0px; /* Akan diatur oleh JavaScript */
        }
		
		/* Open Sans Regular */
		@font-face {
		  font-family: 'Open Sans';
		  src: url('../fonts/open-sans-latin-400-normal.woff2') format('woff2');
		  font-weight: 400;
		  font-style: normal;
		  font-display: swap;
		}

		/* Open Sans SemiBold */
		@font-face {
		  font-family: 'Open Sans';
		  src: url('../fonts/open-sans-latin-600-semibold.woff2') format('woff2');
		  font-weight: 600;
		  font-style: normal;
		  font-display: swap;
		}

		/* Montserrat Regular */
		@font-face {
		  font-family: 'Montserrat';
		  src: url('../fonts/montserrat-latin-400-normal.woff2') format('woff2');
		  font-weight: 400;
		  font-style: normal;
		  font-display: swap;
		}
		
		@font-face {
		  font-family: 'Montserrat';
		  src: url('../fonts/montserrat-latin-500-medium.woff2') format('woff2');
		  font-weight: 500;
		  font-style: normal;
		  font-display: swap;
		}
		
		@font-face {
		  font-family: 'Montserrat';
		  src: url('../fonts/montserrat-latin-600-semibold.woff2') format('woff2');
		  font-weight: 600;
		  font-style: normal;
		  font-display: swap;
		}

		/* Montserrat Bold */
		@font-face {
		  font-family: 'Montserrat';
		  src: url('../fonts/montserrat-latin-700-bold.woff2') format('woff2');
		  font-weight: 700;
		  font-style: normal;
		  font-display: swap;
		}

        body {
        font-family: 'Open Sans', sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
        font-size: 16px;
		text-transform: none !important;
        }

        h1, h2, h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700!important;
        }
        
        .poin {
        list-style: none;
        padding-left: 0;
        margin: 0;
        }
        .poin li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        color: var(--text-color);
        }
		
        /* Navbar */
        .navbar {
        position: fixed!important;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 5%;
        transition: all 0.3 ease;
        z-index: 1000;
        background: transparent;
		padding-right: 120px!important;
        }

        .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        padding: 10px 5%;
        }

        .navbar .logo {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        transition: all 0.3 ease;
        }

        .navbar.scrolled .logo {
        color: var(--primary-color-1);
        }

        .navbar .logo i {
        margin-right: 10px;
        color: var(--primary-color-1);
        }

        .navbar .logo img {
        height: 50px;
        margin-right: 10px;
		margin-left: 80px;
        }

        .navbar .logo .logo-img {
        height: 40px;
        width: auto;
        margin-right: 10px;
        transition: all 0.3 ease;
        filter: brightness(0) invert(1); /* Membuat logo putih saat navbar transparan */
        }

        .navbar.scrolled .logo .logo-img {
        filter: none; /* Mengembalikan warna asli saat navbar di-scroll */
        }

        .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
        }

        .nav-links li {
        list-style: none;
        position: relative;
        }

        .nav-links > li > a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size: 1rem;
        padding: 8px 0;
        position: relative;
        transition: all 0.3 ease;
        display: flex;
        align-items: center;
        }

        .navbar.scrolled .nav-links > li > a {
        color: var(--primary-color-1);
        }

        .nav-links > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color-2);
        transition: all 0.3 ease;
        }

        .nav-links > li > a:hover::after {
        width: 100%;
        }
		/* Default navbar */
		header.navbar {
		  background: #fff;
		  transition: background 0.3s ease, box-shadow 0.3s ease;
		}

		/* Kalau ada hero/header → transparan */
		body.has-hero header.navbar.navbar-transparent {
		  background: transparent;
		  box-shadow: none;
		  position: absolute;
		  top: 0;
		  width: 100%;
		}

		/* Kalau discroll → jadi solid */
		body.has-hero header.navbar.scrolled {
		  background: #fff;
		  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		  position: fixed;
		}

        /* Arrow indicators for desktop */
        .nav-links > li.has-submenu > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8em;
        margin-left: 5px;
        position: static;
        width: auto;
        height: auto;
        background: none;
        }

        /* Submenu */
        .nav-links > li > ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        box-shadow: var(--shadow);
        border-radius: 8px;
        overflow: visible;
        z-index: 10;
        padding: 10px 0;
        }

        .nav-links > li:hover > ul {
        display: block;
        animation: fadeIn 0.3s ease;
        }

        .nav-links > li > ul > li {
        border-bottom: none;
        padding: 0;
        position: relative;
        }

        .nav-links > li > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        color: var(--text-color);
        transition: all 0.3 ease;
        text-decoration: none;
        }

        .nav-links > li > ul > li > a:hover {
        background: rgba(67, 97, 238, 0.1);
        color: var(--primary-color-1);
        }

        /* Sub-submenu */
        .nav-links > li > ul > li > ul {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 2px; /* Jarak yang pas antara submenu dan sub-submenu */
        background: white;
        min-width: 180px;
        box-shadow: var(--shadow);
        border-radius: 8px;
        z-index: 11;
        padding: 10px 0;
        }

        .nav-links > li > ul > li:hover > ul {
        display: block;
        animation: fadeIn 0.3s ease;
        }

        .nav-links > li > ul > li > ul > li > a {
        display: block;
        padding: 12px 20px;
        color: var(--text-color);
        transition: all 0.3 ease;
        text-decoration: none;
        }

        .nav-links > li > ul > li > ul > li > a:hover {
        background: rgba(67, 97, 238, 0.1);
        color: var(--primary-color-1);
        }

        /* Arrow for sub-submenu */
        .nav-links > li > ul > li.has-submenu > a::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8em;
        }

        /* Hamburger */
        .hamburger {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
        }

        .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3 ease;
        border-radius: 3px;
        }

        .navbar.scrolled .hamburger span {
        background: var(--dark-color);
        }

        .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
        opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Sidebar */
        .sidebar {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100%;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3 ease;
        padding: 30px;
        z-index: 1500;
        overflow-y: auto;
        }

        .sidebar.open {
        right: 0;
        }

        .sidebar .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary-color-1);
        color: white;
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3 ease;
        }

        .sidebar .close-btn:hover {
        background: var(--primary-color-2);
        transform: rotate(90deg);
        }

        .sidebar .sidebar-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        }

        .sidebar .sidebar-header h3 {
        font-size: 1.5rem;
        color: var(--text-color);
        }

        .sidebar ul {
        list-style: none;
        }

        .sidebar li {
        margin-bottom: 5px;
        }

        .sidebar a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        text-decoration: none;
        color: var(--text-color);
        border-radius: 8px;
        transition: all 0.3 ease;
        }

        .sidebar a:hover {
        background: rgba(67, 97, 238, 0.1);
        color: var(--primary-color-1);
        }

        .sidebar a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        }

        .sidebar .has-sub > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        transition: all 0.3 ease;
        }

        .sidebar li.open > a::after {
        transform: rotate(180deg);
        }

        .sidebar ul ul {
        display: none;
        margin-left: 15px;
        margin-top: 5px;
        border-left: 2px solid var(--primary-color-1);
        padding-left: 15px;
        }

        .sidebar li.open > ul {
        display: block;
        }

        /* Overlay */
        .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1400;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3 ease;
        }

        .overlay.active {
        opacity: 1;
        visibility: visible;
        }

        /* Animations */
        @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
        }

        @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Responsive */
        @media(max-width: 992px) {
        .nav-links {
            gap: 15px;
        }
        }

        @media(max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .hamburger {
            display: flex;
        }
        }

        @media(max-width: 576px) {
        .navbar {
            padding: 15px 4%;
        }
        
        .navbar.scrolled {
            padding: 10px 4%;
        }
        
        .sidebar {
            width: 280px;
            right: -280px;
        }
        }
        
        /* Footer Styles */
        .footer {
            background: var(--primary-color-1);
            color: #fff;
            padding: 50px 20px 20px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #f39c12;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column {
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #f39c12;
        }
        
        .footer-column p, .footer-column li {
            line-height: 1.6;
            margin-bottom: 10px;
            color: #e0e0e0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-column ul li a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #f39c12;
            transform: translateY(-3px);
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #f39c12;
            width: 20px;
            text-align: center;
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: #bbb;
        }
        
        .footer-bottom p {
            margin-bottom: 5px;
        }
        
        .footer-bottom a {
            color: #f39c12;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-info {
                text-align: left;
                display: inline-block;
            }
        }