.footer-kpu {
    position: relative;
    width: 100%;
    text-align: center;

    padding: 14px 12px;
    font-size: 12px;
    line-height: 1.6;

    background: #ffffff; 
    color: #374151;
    border-top: 1px solid #e5e7eb;

    transition: background-color 0.3s ease, color 0.3s ease;

    /* === KUNCI SOLUSI === */
    margin-top: 40px;          /* cegah footer naik saat body sedikit */
}

/* Dark mode */
.dark .footer-kpu {
    background: #0f0f0f;
    color: #ccc;
    border-top: 1px solid #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-kpu {
        font-size: 11px;
        padding: 12px 10px;
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .footer-kpu {
        font-size: 11px;
        padding: 10px 8px;
        margin-top: 28px;
    }
}
