
    /* Indikator Cards */
    .indikator-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px 25px;
        text-align: left;
        height: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        position: relative;
        overflow: hidden;
        transition: 0.3s;
    }

    .indikator-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .indikator-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .indikator-title {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #0a2558;
    }

    .indikator-desc {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }

    .badge-bobot {
        position: absolute;
        top: 20px;
        right: 20px;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 5px 15px;
        border-radius: 20px;
        background-color: #f4f7f6;
        color: #0a2558;
        border: 1px solid #e0e0e0;
    }

    /* Alert Box */
    .alert-custom {
        background-color: #0a2558;
        color: #fff;
        border-radius: 12px;
        padding: 30px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 20px rgba(10, 37, 88, 0.15);
        margin-bottom: 40px;
    }

    .alert-custom i {
        font-size: 3rem;
        color: #fbc531;
        margin-right: 25px;
    }

    .alert-custom h5 {
        font-weight: 700;
        margin-bottom: 5px;
        color: #fbc531;
    }

    .alert-custom p {
        margin: 0;
        font-size: 0.95rem;
        opacity: 0.9;
    }

    /* Footer */
    footer {
        background-color: #0a2558;
        color: #fff;
        padding: 25px 0;
        font-size: 0.85rem;
        margin-top: 60px;
        border-top: 4px solid #fbc531;
    }

    footer a {
        color: #fff;
        text-decoration: none;
        margin-left: 15px;
    }

    .footer-info {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-info div {
        margin: 5px 15px;
        display: flex;
        align-items: center;
    }

    .footer-info i {
        color: #fbc531;
        margin-right: 8px;
        font-size: 1.2rem;
    }