
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
            color: #333;
        }

        /* Tema Warna */
        .bg-navy-dark {
            background-color: #051937;
        }

        .text-navy {
            color: #051937;
        }

        .text-gold {
            color: #fbc531;
        }

        .bg-gold {
            background-color: #fbc531;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #051937;
            padding: 15px 50px;
        }

        .navbar-custom .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            margin-left: 15px;
        }

        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: #fbc531 !important;
        }

        .dropdown-menu {
            border-radius: 8px;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .dropdown-item i {
            width: 20px;
            color: #6c757d;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #051937;
            font-weight: bold;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(5, 25, 55, 0.85), rgba(5, 25, 55, 0.85)), url('<?= base_url("assets/img/jakarta-bg.jpg") ?>') center/cover no-repeat;
            padding: 80px 0 50px 0;
            color: #fff;
            text-align: center;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fbc531;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            padding: 0;
            margin-top: 15px;
        }

        .breadcrumb-item a {
            color: #fff;
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: #fbc531;
        }

        /* Title Sections */
        .section-title {
            font-weight: 800;
            color: #051937;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: #fbc531;
        }

        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Flow / Alur Cards */
        .alur-step {
            position: relative;
            text-align: center;
            margin-bottom: 30px;
        }

        .alur-icon-box {
            width: 90px;
            height: 90px;
            background-color: #fff;
            border: 3px solid #051937;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 2rem;
            color: #051937;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
            position: relative;
            z-index: 2;
        }

        .alur-step:hover .alur-icon-box {
            background-color: #051937;
            color: #fbc531;
            transform: scale(1.1);
        }

        .alur-number {
            position: absolute;
            top: 0;
            right: 0;
            background: #fbc531;
            color: #051937;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
        }

        .alur-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #051937;
            margin-bottom: 10px;
        }

        .alur-desc {
            font-size: 0.85rem;
            color: #666;
        }

        /* Arrow Connector */
        @media (min-width: 992px) {
            .alur-step::after {
                content: '\f0da';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                top: 35px;
                right: -15px;
                font-size: 2.5rem;
                color: #cbd5e1;
                z-index: 1;
            }

            .alur-step:last-child::after {
                display: none;
            }
        }

        /* Table Jadwal */
        .jadwal-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border-top: 5px solid #051937;
        }

        .table-jadwal th {
            background-color: #f8f9fa;
            color: #051937;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            border-bottom: 2px solid #e9ecef !important;
            padding: 15px;
        }

        .table-jadwal td {
            padding: 15px;
            vertical-align: middle;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .table-jadwal tbody tr:hover {
            background-color: #f0f4f8;
        }

        /* Footer */
        footer {
            background-color: #051937;
            color: #fff;
            padding: 30px 0;
            font-size: 0.9rem;
            border-top: 4px solid #fbc531;
            margin-top: 60px;
        }