   
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        /* 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; }

   /* Search Section */
    .search-container {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-top: -40px;
        position: relative;
        z-index: 10;
        margin-bottom: 50px;
    }

    /* Regulasi Cards */
    .regulasi-card {
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
        border-left: 5px solid #051937;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .regulasi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-left-color: #fbc531;
    }

    .regulasi-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        color: #f0f4f8;
        z-index: 1;
        transition: 0.3s;
    }

    .regulasi-card:hover .regulasi-icon {
        color: rgba(251, 197, 49, 0.2);
        transform: scale(1.1);
    }

    .regulasi-content {
        position: relative;
        z-index: 2;
        flex-grow: 1;
    }

    .regulasi-category {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #007bff;
        letter-spacing: 1px;
        margin-bottom: 5px;
        display: block;
    }

    .regulasi-nomor {
        font-size: 1.15rem;
        font-weight: 800;
        color: #051937;
        margin-bottom: 5px;
    }

    .regulasi-judul {
        font-size: 0.95rem;
        font-weight: 600;
        color: #495057;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .regulasi-desc {
        font-size: 0.85rem;
        color: #6c757d;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .btn-lihat {
        display: inline-block;
        background-color: #f8f9fa;
        color: #051937;
        border: 1px solid #dee2e6;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 6px 20px;
        transition: 0.3s;
        margin-top: auto;
        align-self: flex-start;
    }

    .btn-lihat:hover {
        background-color: #051937;
        color: #fff;
        text-decoration: none;
        border-color: #051937;
    }

    /* Footer */
    footer {
        background-color: #051937;
        color: #fff;
        padding: 30px 0;
        font-size: 0.9rem;
        border-top: 4px solid #fbc531;
        margin-top: 60px;
    }